@font-face {
    font-family: 'DosisExtraLight'; 
    src: url('/assets/fonts/static/Dosis-ExtraLight.ttf') format('opentype'); 
    font-weight: normal; 
    font-style: normal;
}

body, html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
    background-color: #2b2b2b;
    font-family: 'DosisExtraLight', sans-serif;
    scroll-behavior: smooth;
}


.pricing-section {
    background: #1e1e1e;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    width: 80%;
    margin: 40px auto;
}

.pricing-section:first-of-type{
    margin: 110px auto 50px auto;

}

.pricing-section h2 {
    text-align: center;
    color: #f1c40f;
    margin-bottom: 20px;
    font-size: 2rem;
    text-transform: uppercase;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
    color: #fff;
}

.pricing-table th, .pricing-table td {
    border: 1px solid #333;
    padding: 15px;
    font-size: 1.2rem;
}

.pricing-table th {
    background-color: #333;
    color: #f1c40f;
    font-weight: bold;
}

.pricing-table tr:nth-child(even) {
    background-color: #2c2c2c;
}

.pricing-table tr:nth-child(odd) {
    background-color: #1e1e1e;
}

.pricing-table tr:hover {
    background-color: #3a3a3a;
    transition: 0.3s ease;
}

/* Stilizacija linkova */
a {
    color: #f1c40f;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Responzivnost */
@media (max-width: 768px) {
    .pricing-table th, .pricing-table td {
        padding: 10px;
        font-size: 1rem;
    }

    .pricing-section {
        padding: 5px;
        width: 95%;
        margin: 0 auto;
    }

    .pricing-section h2 {
        font-size: 1.5rem;
    }

    .pricing-section1{
        margin-bottom: 20px !important;
    }

    .pricing-section2{
        margin-bottom: 20px;
    }

    .pricing-table tr:nth-child(even):hover {
        background-color: #2c2c2c;
    }
    
    .pricing-table tr:nth-child(odd) {
        background-color: #1e1e1e;
    }
}