﻿
* {
    padding:0;
    margin:0;
    box-sizing:border-box;
}
:root {
    --bg-light: #f5f7fa;
    --bg-dark: #1e1e2f;
    --card-light: #ffffff;
    --card-dark: #2c2c3e;
    --text-light: #000000;
    --text-dark: #ffffff;
    --icon-color: #ffffff;
}

body {
    /*background-color: #f8f9fa;*/
    background-color: var(--bg-light);
    color: var(--text-light);
    transition: background-color 0.3s, color 0.3s;

}

body a {
    color: inherit !important;
    text-decoration: none!important;
}


.container-fluid {
    padding: 0 !important;
}

.form-heading {
    text-align: center;
    margin-bottom: 20px;
    color: #007bff;
    font-weight: bold;
    text-transform: uppercase;
}

.form-section {
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 20px;
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

    .form-section:hover {
        transform: scale(1.02);
    }

.form-label {
    color: #495057;
    font-weight: bold;
}

.input-group-text {
    background-color: #f0f2f5;
    border: none;
}

.form-select, .form-control {
    transition: border-color 0.3s ease;
}

    .form-select:focus, .form-control:focus {
        border-color: #007bff;
        box-shadow: none;
    }



.optional-section {
    background-color: #f8f9fa;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: none;
}

.btn-add {
    position: absolute;
    top: 0px;
    right: 5px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    font-size: 25px;
    background-color: #007bff;
    color: white;
    border: none;
    transition: background-color 0.3s;
}

    .btn-add:hover {
        background-color: #0056b3;
    }

ul li a {
    color: inherit;
    text-decoration: none;
}

    ul li a:hover {
        color: inherit;
        text-decoration: none;
    }

