


:root {
    
    --golden-sunset: #FF8C42;
    --soft-peach: #FFB88C;
    --golden: #FFD700;
    
    
    --deep-ocean: #1E3A5F;
    --forest-green: #2D5016;
    --sky-blue: #4A90E2;
    --fresh-grass: #7CB342;
    
    
    --white: #FFFFFF;
    --light-gray: #F5F7FA;
    --medium-gray: #8E9AAF;
    --dark-gray: #2C3E50;
    
    
    --iridescent-pink: #FF6B9D;
    --iridescent-purple: #9B59B6;
    --silver: #C0C0C0;
    
    
    --water-gradient: linear-gradient(135deg, #4A90E2 0%, #1E3A5F 100%);
    --sunset-gradient: linear-gradient(135deg, #FF8C42 0%, #FFD700 100%);
}


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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
}


h1, h2, h3, h4, h5, h6 {
    color: var(--deep-ocean);
    font-weight: 700;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

a {
    color: var(--golden-sunset);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--sky-blue);
}


header {
    background: var(--deep-ocean);
    color: var(--white);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(30, 58, 95, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.logo span {
    color: var(--golden-sunset);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

.nav-links a:hover,
.nav-links a.active {
    color: var(--golden-sunset);
}


.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 0.25rem;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}


.hero {
    background: url('../image/hero.jpeg') center/cover no-repeat;
    background-attachment: fixed;
    color: var(--dark-gray);
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../image/hero.jpeg') center/cover no-repeat;
    filter: blur(10px);
    transform: scale(1.1);
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hero .hero-content {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.hero .hero-image {
    flex: 1;
    min-width: 0;
}

.hero .hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero .hero-content {
    flex: 1;
    min-width: 0;
}

.hero h1 {
    color: var(--deep-ocean);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero p {
    color: var(--dark-gray);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .hero .container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .hero h1 {
        font-size: 2rem;
        text-align: center;
    }
    
    .hero p {
        text-align: center;
    }
}


.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--golden-sunset);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--soft-peach);
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(30, 58, 95, 0.15);
}

.btn-register {
    background-color: var(--golden-sunset);
    color: var(--white);
    font-weight: 700;
    padding: 1rem 2.5rem;
    font-size: 1.15rem;
    box-shadow: 0 4px 12px rgba(255, 140, 66, 0.3);
}

.btn-register:hover {
    background-color: var(--soft-peach);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(255, 140, 66, 0.4);
}

.btn-secondary {
    background-color: var(--sky-blue);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--deep-ocean);
    transform: translateY(-2px);
}

.btn-success {
    background-color: var(--fresh-grass);
    color: var(--white);
}


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


.section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}


.card {
    background: var(--white);
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(30, 58, 95, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
}

.grid .card {
    height: 100%;
}

.grid .card .btn {
    margin-top: auto;
    align-self: flex-start;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(30, 58, 95, 0.2);
    border-top: 3px solid var(--golden-sunset);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.card h3 {
    margin-bottom: 0.5rem;
}


.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}


footer {
    background-color: var(--dark-gray);
    color: var(--light-gray);
    padding: 3rem 2rem 1rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-content .footer-section p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--light-gray);
}

.footer-content .footer-section p:last-child {
    margin-bottom: 0;
}

.footer-content .footer-section p strong {
    color: var(--light-gray);
    font-weight: 600;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--light-gray);
}

.footer-section a:hover {
    color: var(--golden-sunset);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid var(--medium-gray);
    text-align: center;
    font-size: 0.9rem;
    color: var(--light-gray);
}

.footer-bottom p {
    color: var(--light-gray);
    margin-bottom: 0.5rem;
}

.footer-bottom-links {
    margin-bottom: 1rem;
}

.footer-bottom-links a {
    color: var(--light-gray);
    margin: 0 0.5rem;
    text-decoration: none;
}

.footer-bottom-links a:hover {
    color: var(--golden-sunset);
}

.footer-company-info {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--medium-gray);
    font-size: 0.85rem;
    color: var(--light-gray);
}

.footer-company-info p {
    margin-bottom: 0.25rem;
    color: var(--light-gray);
}

.footer-company-info a {
    color: var(--light-gray);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    justify-content: center;
}

.footer-social a {
    color: var(--light-gray);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--golden-sunset);
}

.fs-footnote {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--medium-gray);
    font-size: 0.85rem;
    color: var(--light-gray);
    line-height: 1.6;
}

.fs-footnote p {
    color: var(--light-gray);
    margin-bottom: 0;
}

.fs-footnote strong {
    color: var(--light-gray);
    font-weight: 600;
}


.registration-form {
    width: 100%;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--deep-ocean);
    font-size: 0.95rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"],
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--light-gray);
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="password"]:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--sky-blue);
}

.form-group input[type="checkbox"] {
    margin-right: 0.5rem;
    width: auto;
}

.form-group small {
    display: block;
    margin-top: 0.25rem;
    color: var(--medium-gray);
    font-size: 0.85rem;
}

.form-group label:has(input[type="checkbox"]) {
    font-weight: normal;
    display: flex;
    align-items: flex-start;
    cursor: pointer;
}

.form-group label:has(input[type="checkbox"]) a {
    color: var(--sky-blue);
    text-decoration: underline;
    margin-left: 0.25rem;
}


.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background-color: var(--white);
    margin: 2% auto;
    padding: 2rem;
    border-radius: 10px;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.3s ease;
    position: relative;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    color: var(--medium-gray);
    float: right;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    transition: color 0.3s ease;
}

.modal-close:hover,
.modal-close:focus {
    color: var(--deep-ocean);
}

#modalArticleContent {
    margin-top: 1rem;
}

#modalArticleContent h4 {
    color: var(--deep-ocean);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

#modalArticleContent p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 5% auto;
        padding: 1.5rem;
    }
    
    .modal-close {
        top: 0.5rem;
        right: 1rem;
        font-size: 1.5rem;
    }
}


.game-container {
    background: var(--water-gradient);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

.game-score {
    background: rgba(255, 255, 255, 0.9);
    padding: 1rem 2rem;
    border-radius: 10px;
    display: inline-block;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--deep-ocean);
}

.fs-points {
    color: var(--deep-ocean);
    font-size: 1.8rem;
    font-weight: 700;
}

.fish {
    position: absolute;
    cursor: pointer;
    transition: transform 0.1s ease;
}

.fish:hover {
    transform: scale(1.1);
}

.fish-caught {
    animation: splash 0.5s ease-out;
}

@keyframes splash {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
    }
    100% {
        transform: scale(0);
        opacity: 0;
    }
}

@keyframes floatUp {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(-50px);
    }
}


@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--deep-ocean);
        flex-direction: column;
        gap: 0;
        padding: 4rem 2rem 2rem;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-links a {
        display: block;
        padding: 1rem 0;
        width: 100%;
        font-size: 1.1rem;
    }
    
    body.menu-open {
        overflow: hidden;
    }
    
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }
    
    .hero {
        padding: 3rem 1rem;
    }
    
    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
        word-wrap: break-word;
    }
    
    .hero p {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    h1 {
        font-size: 2rem;
        line-height: 1.2;
        word-wrap: break-word;
    }
    
    h2 {
        font-size: 1.5rem;
        line-height: 1.3;
        word-wrap: break-word;
    }
    
    h3 {
        font-size: 1.2rem;
        line-height: 1.3;
        word-wrap: break-word;
    }
    
    h4 {
        font-size: 1.1rem;
        line-height: 1.3;
        word-wrap: break-word;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }
    
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
    
    
    .table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        width: 100%;
        margin: 1rem 0;
    }
    
    .data-table {
        font-size: 0.85rem;
        min-width: 600px;
        display: table;
    }
    
    .data-table th,
    .data-table td {
        padding: 0.75rem 0.5rem;
        white-space: nowrap;
    }
    
    .data-table th {
        font-size: 0.9rem;
    }
    
    .data-table td {
        font-size: 0.85rem;
    }
    
    
    @media (max-width: 480px) {
        .data-table,
        .data-table thead,
        .data-table tbody,
        .data-table th,
        .data-table td,
        .data-table tr {
            display: block;
        }
        
        .data-table thead tr {
            position: absolute;
            top: -9999px;
            left: -9999px;
        }
        
        .data-table tr {
            border: 1px solid var(--light-gray);
            margin-bottom: 1rem;
            border-radius: 8px;
            padding: 0.5rem;
            background: var(--white);
        }
        
        .data-table td {
            border: none;
            position: relative;
            padding-left: 50%;
            padding-top: 0.5rem;
            padding-bottom: 0.5rem;
            text-align: left;
            white-space: normal;
        }
        
        .data-table td:before {
            content: attr(data-label);
            position: absolute;
            left: 0.5rem;
            width: 45%;
            padding-right: 10px;
            white-space: nowrap;
            font-weight: 600;
            color: var(--deep-ocean);
        }
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1rem;
    }
    
    .stat-card .number {
        font-size: 1.8rem;
    }
    
    .card {
        padding: 1rem;
    }
    
    .accordion-header {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .accordion-content {
        padding: 1rem !important;
        font-size: 0.9rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-bottom {
        padding-top: 1.5rem;
    }
    
    .btn {
        padding: 0.625rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .btn-register {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    .hero {
        padding: 2.5rem 1rem;
    }
}


.table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    margin: 1rem 0;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .table-wrapper {
        margin: 0.5rem 0;
    }
    
    .table-wrapper::-webkit-scrollbar {
        height: 8px;
    }
    
    .table-wrapper::-webkit-scrollbar-track {
        background: var(--light-gray);
        border-radius: 4px;
    }
    
    .table-wrapper::-webkit-scrollbar-thumb {
        background: var(--medium-gray);
        border-radius: 4px;
    }
    
    .table-wrapper::-webkit-scrollbar-thumb:hover {
        background: var(--dark-gray);
    }
    
    
    h1, h2, h3, h4, h5, h6 {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    
    .card {
        margin-bottom: 1.5rem;
    }
    
    
    .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .hero .btn {
        width: auto;
        display: inline-block;
        margin: 0.5rem;
    }
    
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; 
    }
    
    
    .info-box {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .stat-card {
        min-height: auto;
    }
}


.text-center {
    text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }


.accordion {
    margin: 2rem 0;
}

.accordion-item {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 5px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 4px 8px rgba(30, 58, 95, 0.1);
}

.accordion-header {
    background: var(--deep-ocean);
    color: var(--white);
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.accordion-header:hover {
    background: var(--sky-blue);
}

.accordion-header::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header::after {
    content: '−';
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.5rem;
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
    padding: 1.5rem;
}

.accordion-content p {
    margin-bottom: 1rem;
    color: var(--dark-gray);
    line-height: 1.8;
}

.accordion-content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.accordion-content li {
    margin-bottom: 0.5rem;
}


.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: var(--white);
    box-shadow: 0 2px 8px rgba(30, 58, 95, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.data-table thead {
    background: var(--water-gradient);
    color: var(--white);
}

.data-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
}

.data-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--light-gray);
    color: var(--dark-gray);
}

.data-table tbody tr {
    transition: background-color 0.2s ease;
}

.data-table tbody tr:hover {
    background-color: var(--light-gray);
}

.data-table tbody tr:last-child td {
    border-bottom: none;
}

.data-table .highlight {
    background-color: rgba(30, 58, 95, 0.05);
    font-weight: 600;
    color: var(--deep-ocean);
}


.info-box {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1) 0%, rgba(30, 58, 95, 0.1) 100%);
    border-left: 4px solid var(--sky-blue);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 5px;
}

.info-box.warning {
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.1) 0%, rgba(255, 212, 0, 0.1) 100%);
    border-left-color: var(--golden-sunset);
}

.info-box.success {
    background: linear-gradient(135deg, rgba(124, 179, 66, 0.1) 0%, rgba(45, 80, 22, 0.1) 100%);
    border-left-color: var(--fresh-grass);
}

.info-box h3 {
    margin-top: 0;
    color: var(--deep-ocean);
    font-size: 1.2rem;
}


.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.stat-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(30, 58, 95, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(30, 58, 95, 0.2);
}

.stat-card .number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--deep-ocean);
    margin-bottom: 0.5rem;
}

.stat-card .label {
    color: var(--dark-gray);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}


.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0.25rem;
}

.badge-primary {
    background-color: var(--sky-blue);
    color: var(--white);
}

.badge-success {
    background-color: var(--fresh-grass);
    color: var(--white);
}

.badge-warning {
    background-color: var(--golden-sunset);
    color: var(--white);
}

.badge-info {
    background-color: var(--iridescent-purple);
    color: var(--white);
}

