﻿
/* From bootstap-grid   sidebar 250 px */
@media (min-width: 576px) {
    .container-sm, .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container-md, .container-sm, .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container-lg, .container-md, .container-sm, .container {
        max-width: 960px;
    }
}

@media (min-width: 1000px) {
    .container-xl, .container-lg, .container-md, .container-sm, .container {
        max-width: 750px;
    }
}

@media (min-width: 1200px) {
    .container-xl, .container-lg, .container-md, .container-sm, .container {
        max-width: 950px;
    }
}

@media (min-width: 1400px) {
    .container-xl, .container-lg, .container-md, .container-sm, .container {
        max-width: 1150px;
    }
}

@media (min-width: 1600px) {
    .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
        max-width: 1350px;
    }
}

@media (min-width: 1800px) {
    .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
        max-width: 1550px;
    }
}

/* Center the title vertically and horizontally */
.title-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 5px;
    justify-content: center;
    height: 12vh; /* Adjust as needed */
    background-color: #f0f0f0;
}

.small-title-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 5px;
    justify-content: center;
    height: 14vh; /* Adjust as needed */
    background-color: #f0f0f0;
}

/* Style for the main title */
.main-title {
    font-size: 3rem; /* Adjust the size as needed */
    /*font-family: 'Arial', sans-serif;*/ /* Choose an appropriate font */
    color: #333; /* Choose a suitable text color */
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2); /* Add a subtle shadow */
}

/* Style for the subtitle */
.subtitle {
    font-size: 1.5rem; /* Adjust the size as needed */
    /*font-family: 'Arial', sans-serif; */ /* Choose an appropriate font */
    color: #666; /* Choose a suitable text color */
    text-align: center;
}

.form-container {
    width: 100%;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-field {
    margin-bottom: 10px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}


select,
input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

button {
    padding: 8px 16px;
    background-color: #004E2B;
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

.button:hover {
    color: #fff;
    background-color: #00DD39;
    border-color: #0a58ca
}

.required {
    color: red; /* Make it red */
    font-weight: bold; /* Optional: Bold for emphasis */
}

.required-label:after {
    content: " *"; /* Add asterisk */
    color: red; /* Make it red */
    font-weight: bold; /* Optional: Bold for emphasis */
}

.plusround-button {
    /*display: flex;*/
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 30px;
    border-radius: 50%;
    background-color: #004E2B; /*#3498db;*/
    color: white;
    /*font-size: 16px;*/
    line-height: 1;
    font-weight: bold;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Adds a subtle shadow */
    transition: background-color 0.3s ease, transform 0.2s ease; /* Smooth hover effects */
}

    /* Hover effect */
    .plusround-button:hover {
        background-color: #2980b9; /* Darker shade on hover */
        transform: scale(1.1); /* Slightly enlarge button */
    }

    /* Active effect (click) */
    .plusround-button:active {
        transform: scale(1); /* Restore size */
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Slightly reduced shadow */
    }
