/* Global Styles */
:root {
    --primary-color: #007BFF;
    --primary-dark: #0056b3;
    --text-color: #333;
    --bg-color: #f8f9fa;
    --white: #ffffff;
    --border-color: #dee2e6;
}

h1 {
    font-size: 1.6rem !important
}

h2 {
    font-size: 1.4rem !important
}

h3 {
    font-size: 1.3rem !important
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
}

a {
    text-decoration: none;
    color: inherit;
}

ol {
    margin-bottom: 0;
}

p {
    margin-bottom: 0;
}

ul {
    list-style: none;
    margin-bottom: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Header */
.main-header {
    background-color: var(--white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.top-logo-frame {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 20px;
    padding-left: 0.8rem;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-color);
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.search-container {
    display: flex;
    align-items: center;
    position: relative;
    margin-right: 15px;
}

.header-search-bar {
    width: 0;
    opacity: 0;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 5px 0;
    outline: none;
    background-color: #f8f9fa;
    position: absolute;
    right: 35px;
    z-index: 10;
}

.header-search-bar.active {
    width: 200px;
    opacity: 1;
    padding: 5px 15px;
}

.search-icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    transition: color 0.3s;
}

.search-icon-btn:hover {
    color: var(--primary-color);
}

.user-profile-img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 8px;
    border: 1px solid var(--border-color);
    vertical-align: middle;
}

/* Home Hero Section */
.hero-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/images/background/index.png');
    background-size: cover;
    background-position: center;
    color: var(--white);
    height: 100vh;
    /* Full screen */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 0;
    /* Remove margin as it is full screen */
    border-radius: 0;
}

.hero-content {
    max-width: 800px;
    width: 100%;
    padding: 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: #f8f9fa;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Floating Ad */
.floating-ad {
    position: fixed;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    width: 160px;
    height: 600px;
    z-index: 1000;
    display: none;
    /* Hidden on small screens */
}

@media (min-width: 1400px) {
    .floating-ad {
        display: block;
    }
}

.floating-ad-placeholder {
    width: 100%;
    height: 100%;
    background-color: #e9ecef;
    border: 1px dashed #ced4da;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #495057;
    text-align: center;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

/* Search Box */
.search-box {
    background: rgba(255, 255, 255, 0.85);
    padding: 30px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    max-width: 900px;
    width: 90%;
    margin-top: 2rem;
}

.search-filters {
    display: flex;
    gap: 15px;
    width: 100%;
}

.search-select {
    flex: 1;
    padding: 16px 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    background-color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

.search-select:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
}

.search-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
    filter: brightness(1.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .search-filters {
        flex-direction: column;
        gap: 10px;
    }

    .search-box {
        padding: 20px;
    }
}

/* Footer Links */
.footer-links {
    margin-bottom: 1rem;
}

.footer-links a {
    color: #495057;
    margin: 0 10px;
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.list-container {
    width: 65%;
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 40px;
}

.academy-list-clean {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.academy-list-item {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.academy-list-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    background-color: var(--white);
    border-color: var(--primary-color);
}

.academy-list-info h2 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.academy-meta {
    font-size: 0.9rem;
    color: #666;
    display: flex;
    gap: 15px;
}

.academy-list-action .btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* Detail Page */
.detail-container {
    max-width: 800px;
    margin: 20px auto 3rem;
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.academy-header {
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1.5rem;
}

.academy-header h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.academy-header p {
    color: #666;
    margin-bottom: 0.25rem;
}

/* AI Info Section */
.ai-info-section {
    background: linear-gradient(135deg, #e3f2fd 0%, #ffffff 100%);
    border: 2px solid #007BFF;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.1);
}

.ai-header {
    display: inline;
    align-items: center;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 123, 255, 0.2);
    padding-bottom: 0.5rem;
}

.ai-header-title {
    display: flex;
    align-items: center;
}

.ai-header-sub {
    display: flex;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 123, 255, 0.2);
    padding-bottom: 0.5rem;
}

.ai-icon {
    font-size: 1.8rem;
    margin-right: 10px;
}

.ai-header h3 {
    margin: 0;
    color: #0056b3;
    font-size: 1.4rem;
}

.ai-content p {
    color: #495057;
    margin-bottom: 0.5rem;
}

.ai-content strong {
    color: #007BFF;
}

/* Markdown Content Styles */
.markdown-body {
    line-height: 1.7;
    color: #333;
}

.markdown-body h3 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #495057;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

.markdown-body ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 1rem;
}

.markdown-body li {
    margin-bottom: 5px;
}

.markdown-body p {
    margin-bottom: 1rem;
}

.markdown-body strong {
    color: #007BFF;
    font-weight: 700;
}

/* Tuition Table */
.tuition-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.tuition-table th,
.tuition-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.tuition-table th {
    background-color: #f1f3f5;
    font-weight: 600;
    color: #495057;
}

/* AdMob */
.admob-container {
    margin: 2rem 0;
    padding: 1rem;
    background-color: #f1f3f5;
    border: 1px dashed #adb5bd;
    border-radius: 8px;
    text-align: center;
}

.admob-placeholder {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #868e96;
    font-weight: 500;
}

.main-image {
    margin: 0 0 2rem 0;
}

.academy-gallery {
    margin: 2rem 0;
}

.map-section {
    margin: 2rem 0;
    /* padding: 1rem; */
}

/* Footer */
.main-footer {
    background-color: var(--white);
    padding: 2rem 0;
    text-align: center;
    color: #666;
    border-top: 1px solid var(--border-color);
    margin-top: auto;
}

/* Related Academies */
.related-academies {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.related-card {
    position: relative;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    text-decoration: none !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    background-size: cover;
    background-position: center;
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.related-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.related-card h4 {
    position: relative;
    z-index: 2;
    color: white;
    margin-bottom: 0.3rem;
    font-size: 1.2rem;
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.related-card .related-category {
    position: relative;
    z-index: 2;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    cursor: default;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}


/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
}

.page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 20px 20px 20px;
    max-height: 40px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background-color: var(--white);
    color: var(--text-color);
    font-weight: 500;
    transition: all 0.2s;
}

.page-link:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.page-link.active {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* Utility Classes */
.search-result-title {
    margin-bottom: 2rem;
    padding-bottom: 10px;
    font-weight: 700;
    color: #333;
}

.no-result {
    text-align: center;
    padding: 4rem 0;
    color: #868e96;
}

.category-badge {
    font-size: 0.8rem;
    margin-bottom: 8px;
    display: inline-block;
    padding: 4px 8px;
    background: #e3f2fd;
    color: #007BFF;
    border-radius: 4px;
    font-weight: 600;
}

.academy-title {
    font-size: 1.4rem;
    margin-bottom: 8px;
    font-weight: 700;
    color: #333;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn-primary {
    background-color: #007BFF;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    display: inline-block;
    transition: background 0.2s;
}

.btn-primary:hover {
    background-color: #0056b3;
    color: white;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {

    /* Layout Adjustments */
    .container {
        padding: 0 15px;
    }

    .list-container {
        width: 100%;
        padding: 0 15px;
        margin: 1rem auto;
    }

    .detail-container {
        width: 100%;
        padding: 0 15px;
        margin: 1rem auto;
    }

    /* Header */
    /* Header Layout Mobile */
    .main-header .container {
        flex-direction: row;
        justify-content: space-between;
        gap: 10px;
        padding: 0.5rem 15px;
    }

    .logo {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .top-logo-frame {
        height: 32px;
    }

    nav {
        flex: 1;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        gap: 8px;
    }

    .search-container {
        margin-right: 0;
        position: relative;
        order: 1;
        /* Search icon comes first */
    }

    .header-search-bar {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        z-index: 100;
        background-color: white;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .header-search-bar.active {
        width: 160px;
        right: 35px;
        opacity: 1;
        padding: 6px 12px;
    }

    .nav-links {
        display: flex;
        gap: 12px;
        font-size: 0.85rem;
        flex-shrink: 0;
        order: 2;
        /* Links stay on the right */
        margin-left: 5px;
    }

    .user-profile-img {
        width: 24px;
        height: 24px;
        margin-right: 4px;
    }

    /* Restore Hero Section Mobile */
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    /* Restore Search Box Mobile */
    .search-box {
        flex-direction: column;
        padding: 20px;
        gap: 10px;
        width: 100%;
        max-width: 100%;
        border-radius: 15px;
    }

    .search-select,
    .search-btn {
        width: 100%;
        font-size: 1rem;
        padding: 12px;
    }

    /* Restore Academy List Item Mobile */
    .academy-list-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.5rem;
        gap: 15px;
    }

    .academy-list-info {
        width: 100%;
    }

    .academy-list-action {
        width: 100%;
        margin-top: 10px;
    }

    .academy-list-action .btn {
        display: block;
        width: 100%;
        text-align: center;
        padding: 12px;
    }

    /* Restore Detail Page Mobile */
    .detail-container {
        padding: 1.5rem;
        margin: 10px auto 2rem;
    }

    .academy-header h1 {
        font-size: 1.5rem;
    }

    .tuition-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    /* Hide Desktop Elements */
    .floating-ad {
        display: none !important;
    }
}

/* Authentication Styles */
.auth-container {
    max-width: 400px;
    margin: 4rem auto;
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.auth-container h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #495057;
}

.form-group input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-block {
    display: block;
    width: 100%;
    padding: 12px;
    font-size: 1.1rem;
    margin-top: 1rem;
    border: none;
    cursor: pointer;
}

.auth-footer {
    text-align: center;
    margin-top: 1.5rem;
    color: #666;
    font-size: 0.9rem;
}

.auth-footer a {
    color: var(--primary-color);
    font-weight: 600;
}

/* Comment Section Styles */
.comment-section {
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 12px;
    margin-top: 3rem;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e9ecef;
}

.comment-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: #343a40;
}

.comment-sort a {
    color: #868e96;
    margin-left: 15px;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.comment-sort a.active {
    color: #007bff;
    font-weight: 700;
}

.comment-sort a:hover {
    color: #495057;
}

.comment-form {
    background-color: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.comment-form textarea {
    border: 1px solid #ced4da;
    border-radius: 8px;
    resize: none;
    font-size: 1rem;
    padding: 1rem;
    transition: border-color 0.2s;
    width: 100%;
    font-family: inherit;
}

.comment-form textarea:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.login-prompt {
    text-align: center;
    padding: 2rem;
    background-color: white;
    border-radius: 12px;
    border: 1px dashed #ced4da;
    margin-bottom: 2rem;
}

/* Comment List */
.comment-list {
    margin-top: 2rem;
}

.comment-item {
    background-color: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    border: 1px solid #f1f3f5;
    transition: transform 0.2s;
}

.comment-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.comment-user {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.profile-thumb {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    margin-right: 12px;
    object-fit: cover;
    border: 2px solid #f8f9fa;
}

.comment-user .nickname {
    font-weight: 700;
    font-size: 1rem;
    color: #333;
    margin-right: 8px;
}

.comment-user .date {
    font-size: 0.85rem;
    color: #adb5bd;
}

.comment-content {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #495057;
    font-size: 1rem;
}

.comment-actions {
    display: flex;
    gap: 8px;
    padding-top: 10px;
    border-top: 1px solid #f8f9fa;
}

.btn-action {
    background: transparent;
    border: 1px solid #dee2e6;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #666;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 4px;
}

.btn-action:hover {
    background-color: #f8f9fa;
    color: #333;
    border-color: #ced4da;
}

.btn-like:hover {
    background-color: #fff0f6;
    color: #e64980;
    border-color: #ffc9c9;
}

.btn-report:hover {
    background-color: #fff5f5;
    color: #fa5252;
    border-color: #ffc9c9;
}

.reply-toggle-btn:hover {
    background-color: #e7f5ff;
    color: #228be6;
    border-color: #74c0fc;
}

/* Replies */
.replies {
    margin-top: 15px;
    padding-left: 20px;
    border-left: 2px solid #f1f3f5;
}

.reply-card {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 10px;
}

.reply-card .comment-user {
    margin-bottom: 8px;
}

.reply-card .comment-content {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.no-comments {
    text-align: center;
    color: #868e96;
    padding: 2rem 0;
}

/* Social Login Buttons */
.social-login {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.auth-divider {
    text-align: center;
    margin: 20px 0;
    color: #868e96;
    font-size: 0.9rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-divider::before,
.auth-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background-color: #e9ecef;
    margin: 0 10px;
}

.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-social:hover {
    opacity: 0.9;
    color: white;
}

.btn-google {
    background-color: #DB4437;
    color: white;
}

.btn-naver {
    background-color: #03C75A;
    color: white;
}

.btn-social i {
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Dropdown Menu */
.nav-links li {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 1000;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0.125rem 0 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.175);
}

.dropdown-menu::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block !important;
}

.dropdown-menu:hover {
    display: block !important;
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: 0.25rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}

.dropdown-item:hover {
    color: #16181b;
    text-decoration: none;
    background-color: #f8f9fa;
}