/* Stilizimi i përgjithshëm i trupit */
body {
    font-family: 'Inter', sans-serif;
    background-color: #f0f2f5;
    margin: 0;
    padding: 0;
}

/* Konfigurimi i kontejnerit kryesor */
.main-container {
    display: flex;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    background-color: #ffffff;
    min-height: 100vh; /* Lartësia minimale për desktop */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Shiriti anësor i majtë për Kurset e Këmbimit */
.sidebar {
    background-color: #1d232f;
    color: #e0e0e0;
    width: 320px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    border-right: 1px solid #e5e7eb;
}

.sidebar-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 16px;
    border-bottom: 1px solid #3a4152;
}

.sidebar-header .header-icon {
    color: #9ca3af;
    flex-shrink: 0;
}

.sidebar-header h2 { font-size: 1.25rem; font-weight: 700; color: #ffffff; letter-spacing: 0.5px; margin: 0; }
.rates-header { display: grid; grid-template-columns: 2fr 1fr 1fr; font-size: 0.8rem; color: #8a91a0; padding: 16px 8px; font-weight: 500; }
.rates-header span:last-child, .rates-header span:nth-child(2) { text-align: right; }
.rate-line { display: grid; grid-template-columns: 2fr 1fr 1fr; align-items: center; padding: 12px 8px; font-size: 1rem; border-radius: 6px; transition: background-color 0.2s; }
.rate-line:nth-child(odd) { background-color: #252a36; }
.rate-line:hover { background-color: #3a4152; }
.currency-info { display: flex; align-items: center; font-weight: 600; color: #ffffff; }
.currency-flag { width: 28px; height: 20px; margin-right: 12px; border-radius: 3px; object-fit: cover; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2); }
.buy-price, .sell-price { font-weight: 500; text-align: right; }

/* Stilizimi i Footer-it të Shiritit Anësor */
.sidebar-footer {
    margin-top: auto;
    font-size: 0.75rem;
    color: #8a91a0;
    padding-top: 16px;
    border-top: 1px solid #3a4152;
}
.sidebar-footer p {
    margin: 0;
}
.sidebar-footer p:not(:last-child) {
    margin-bottom: 8px;
}
.sidebar-footer .copyright {
    font-size: 0.7rem;
}
.sidebar-footer .copyright a {
    color: #9ca3af;
    text-decoration: none;
}
.sidebar-footer .copyright a:hover {
    text-decoration: underline;
}

/* Zona kryesore e përmbajtjes (Kolona e Mesme) */
.main-content {
    flex-grow: 1;
    max-width: 600px;
    padding: 24px 5%;
    border-right: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.main-content h1 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
    flex-shrink: 0;
    text-align: center;
}

.main-content .subtitle {
    font-size: 1rem;
    color: #6b7280;
    text-align: center;
    margin-top: 0;
    margin-bottom: 24px;
}

.feed-column {
    flex-grow: 1;
    overflow-y: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.feed-column::-webkit-scrollbar {
    display: none;
}

.facebook-wrapper {
    width: 100%;
    height: 100%; /* We add this for the height fix below */
}

/* Shiriti anësor i djathtë për Widget-et Financiare */
.widgets-sidebar {
    width: 360px;
    padding: 24px;
    flex-shrink: 0;
    overflow-y: auto;
    background-color: #f9fafb;
}

.widgets-sidebar .tradingview-widget-container {
    margin-bottom: 24px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* Spinneri i ngarkimit */
.loader {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 40px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===================================== */
/* === RREGULLIMET PËR EKRANET MOBILE === */
/* ===================================== */
@media (max-width: 1024px) {
    .main-container {
        flex-direction: column;
        height: auto;
        min-height: auto;
    }

    .sidebar, .main-content, .widgets-sidebar {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
        height: auto;
        overflow-y: visible;
        padding: 16px;
    }
    
    .sidebar-footer {
        margin-top: 24px;
    }

    .main-content {
       min-height: 800px;
    }
    
    /* RREGULLIMI PËR CELULAR: Bën që kontejneri të mbushë hapësirën */
    .facebook-wrapper {
        width: 100%;
    }
}