@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

/* Headings */
h1, h2, h3, h4 {
    font-weight: 700;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s;
}

/* Card style (for hero, messages, etc.) */
.card {
    padding: 20px;
    border-radius: 12px;
    text-align: center;
}

/* Footer */
footer {
    text-align: center;
    padding: 10px;
}
.language-selector {
    position: relative;
    display: inline-block;
}

.flag-icon {
    width: 20px;
    height: 14px;
    margin-right: 5px;
    vertical-align: middle;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    background: transparent;
    border: none;
    color: inherit;
    font-weight: 500;
}

.dropdown-menu {
    min-width: 120px;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.dropdown-item img {
    width: 18px;
    height: 12px;
}
/* Moved from dashboard.php to style.css */

/* Tabs fill the width */
.nav-tabs {
    display: flex;
    width: 100%;
}

.nav-tabs .nav-item {
    flex-grow: 1;
    text-align: center;
}





/* Remove bottom border in card header */
.card-header {
    border-bottom: none;
}

/* Create seamless enclosure */
.tab-card {
    border-top: none;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    background-color: var(--bs-card-cap-bg);
    padding: 0;
    margin-top: -1px;
}



/* Override Bootstrap's card-header-tabs to remove unwanted margins */
.card-header-tabs {
    margin-right: 0 !important;
    margin-left: 0 !important;
    border-bottom: 0;
}