.market-page {
    padding-top: 120px;
    max-width: 85%;
}

.analysis-header p {
    font-size: 14px;
    line-height: 200%;
    text-align: justify;
}

.report-box {
    background-color: rgba(227, 234, 244, 0.2);
    border-radius: 12px;
    padding: 24px;
    /* height: 274px; */
}

.report-box .report-content {
    flex: 1;
}

.report-box .report-image {
    width: 200px;
    height: 200px;
}

.report-box .report-image, .report-box .report-image img {
    border-radius: 12px;
}

.report-box .report-title {
    font-size: 20px;
}

.report-box .read-report {
    font-size: 14px;
    color: rgba(0, 122, 255, 1);
}

.report-box .report-content p {
    line-height: 200%;
    font-size: 14px;
}

.load-report {
    color: rgba(0, 122, 255, 1);
}

@media (max-width: 1179.98px) {
    .market-page {
        max-width: 90%;
    }
}

@media (max-width: 767.98px) {
    .report-box .report-image {
        width: 100%;
    }
    .report-box .report-image img {
        object-fit: cover;
    }
    .report-content p {
        text-align: justify;
    }
}

[dir="rtl"] .read-report .ti {
    transform: rotate(180deg);
}

/* Toast Notification System */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.toast-notification {
    background: white;
    padding: 16px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 300px;
    max-width: 400px;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s ease;
    pointer-events: auto;
    border-left: 4px solid #007bff;
}

.toast-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.toast-notification i {
    font-size: 24px;
    flex-shrink: 0;
}

.toast-notification span {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
}

/* Toast Types */
.toast-success {
    border-left-color: #28a745;
}

.toast-success i {
    color: #28a745;
}

.toast-error {
    border-left-color: #dc3545;
}

.toast-error i {
    color: #dc3545;
}

.toast-warning {
    border-left-color: #ffc107;
}

.toast-warning i {
    color: #ffc107;
}

.toast-info {
    border-left-color: #17a2b8;
}

.toast-info i {
    color: #17a2b8;
}

/* RTL Support */
[dir="rtl"] .toast-container {
    right: auto;
    left: 20px;
}

[dir="rtl"] .toast-notification {
    transform: translateX(-400px);
    border-left: none;
    border-right: 4px solid #007bff;
}

[dir="rtl"] .toast-success {
    border-right-color: #28a745;
}

[dir="rtl"] .toast-error {
    border-right-color: #dc3545;
}

[dir="rtl"] .toast-warning {
    border-right-color: #ffc107;
}

[dir="rtl"] .toast-info {
    border-right-color: #17a2b8;
}

#subscriptionModal input:not([type="radio"]) {
    height: 55px;
}

#subscriptionModal .modal-footer button {
    height: 52px;
    width: 100%;
    background-color: rgba(0, 122, 255, 1);
    border-radius: 50rem;
}

#subscriptionModal .plan-title {
    font-size: 16px;
}

#subscriptionModal .plan-price {
    font-size: 14px;
}