/* Profile Ribbon Styles */
.profile-ribbon {
    background: linear-gradient(135deg, #f1eab6, #f7eda6);
    border-bottom: 2px solid #f1eab6;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    animation: slideDown 0.5s ease-out;
}

.ribbon-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 15px;
}

.ribbon-message {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #0B1215;
    font-weight: 500;
    font-size: 14px;
    flex: 1;
    min-width: 250px;
}

.ribbon-message i {
    color: #b8860b;
    font-size: 16px;
}

.ribbon-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.ribbon-link {
    background: #333;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.ribbon-link:hover {
    background: #555;
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
}

.ribbon-link i {
    font-size: 12px;
}

.ribbon-close {
    background: none;
    border: none;
    color: #666;
    font-size: 18px;
    cursor: pointer;
    padding: 7px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.ribbon-close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #0B1215;
}

/* Animation */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .ribbon-content {
        padding: 10px 15px;
        flex-direction: column;
        text-align: center;
    }
    
    .ribbon-message {
        min-width: auto;
        justify-content: center;
    }
    
    .ribbon-actions {
        justify-content: center;
        width: 100%;
    }
    
    .ribbon-link {
        flex: 1;
        justify-content: center;
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .ribbon-message {
        font-size: 13px;
    }
    
    .ribbon-link {
        font-size: 12px;
        padding: 6px 12px;
    }
}
