/* 
 * Vertical Arabic Banner Component
 * للبانر العمودي العربي - تحميل الخطة الدراسية
 */

.vertical-banner {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 45px;
    height: 200px;
    background: linear-gradient(180deg, #e6b54a 0%, #d4a843 100%);
    border-radius: 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(230, 181, 74, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    text-decoration: none;
}

.vertical-banner:hover {
    transform: translateY(-50%) translateX(-5px) scale(1.02);
    box-shadow: 0 6px 20px rgba(230, 181, 74, 0.4);
    text-decoration: none;
}

.vertical-banner:active {
    transform: translateY(-50%) translateX(-3px) scale(0.98);
}

.vertical-banner-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    color: white;
    font-weight: 600;
    font-size: 12px;
    line-height: 1.3;
    text-align: center;
    letter-spacing: 0.5px;
    white-space: nowrap;
    font-family: 'Cairo', sans-serif;
}

.vertical-text-line {
    display: block;
    margin: 6px 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.vertical-text-line:first-child {
    font-weight: 700;
}

.vertical-text-line:last-child {
    font-weight: 700;
    font-size: 11px;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .vertical-banner {
        right: 15px;
        width: 40px;
        height: 180px;
    }
    
    .vertical-banner-text {
        font-size: 11px;
    }
    
    .vertical-text-line:last-child {
        font-size: 10px;
    }
}

@media (max-width: 767.98px) {
    .vertical-banner {
        right: 10px;
        width: 38px;
        height: 160px;
    }
    
    .vertical-banner-text {
        font-size: 10px;
    }
    
    .vertical-text-line {
        margin: 5px 0;
    }
    
    .vertical-text-line:last-child {
        font-size: 9px;
    }
}

@media (max-width: 575.98px) {
    .vertical-banner {
        right: 5px;
        width: 35px;
        height: 140px;
    }
    
    .vertical-banner-text {
        font-size: 9px;
    }
    
    .vertical-text-line {
        margin: 4px 0;
    }
    
    .vertical-text-line:last-child {
        font-size: 8px;
    }
} 