﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification\ 
for details on configuring this project to bundle and minify static web assets. */
.container {
    display: flex;
    flex-direction: row;
    width: 90%;
}

.subcontainer {
    display: flex;
    flex-direction: row;
   
}

.txtTitle {
    font: bold 28px arial;
}

.txtSubTitle {
    font: 28px arial;
}

.txtSubTitle2 {
    font: 20px arial;
}

.txtGeneral {
    font: 20px arial;
    text-align: initial;
}

.txtGeneralcenter {
    font: 20px arial;
    text-align: center;
}


div.transbox {
    margin: 30px;
    background-color: whitesmoke;
    /*border: 1px solid black;*/
    opacity: 0.7;
}

.column {
    flex: 30%;
    /*        height: 100%;*/
    align-content: center;
}

.column1 {
    flex: 60%;
    /*        height: 100%;*/
    align-content: center;
}

.column2 {
    flex: 40%;
    align-content: flex-start;
}

.column3 {
    flex: 30;
    align-content: flex-start;
}

.column4 {
    flex: 10%;
    align-content: flex-start;
}

.footer {
    position: absolute;
    bottom: 0;
}
/* CSS Styling for the TextBox */
.custom-textbox {
    width: 300px;
    height: 40px;
    padding: 10px;
    font-size: 16px;
    border: 2px solid #4CAF50;
    border-radius: 5px;
    outline: none;
    transition: border-color 0.3s ease-in-out;
}

    .custom-textbox:focus {
        border-color: #007BFF;
        box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
    }

.custom-dropdown {
    width: 200px;
    height: 40px;
    font-size: 20px;
    color: #333;
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 5px;
    outline: none;
    transition: all 0.3s ease;
}

    .custom-dropdown:hover {
        border-color: #007bff;
        background-color: #e9ecef;
    }

    .custom-dropdown:focus {
        border-color: #007bff;
        box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
    }

.custom-checkbox {
    display: inline-flex;
    align-items: center;
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #333;
    cursor: pointer;
}

    .custom-checkbox input[type="checkbox"] {
        width: 20px;
        height: 20px;
        margin-right: 10px;
        accent-color: #007bff; /* Modern browsers support this */
    }

        .custom-checkbox input[type="checkbox"]:hover {
            box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
        }

        .custom-checkbox input[type="checkbox"]:checked {
            background-color: #007bff;
            border-color: #007bff;
        }

.custom-button {
    background-color: #4CAF50; /* Green background */
    color: white; /* White text */
    border: none; /* Remove border */
    padding: 10px 20px; /* Add padding */
    text-align: center; /* Center text */
    text-decoration: none; /* Remove underline */
    display: inline-block; /* Inline-block for layout */
    font-size: 16px; /* Font size */
    margin: 4px 2px; /* Margin around button */
    cursor: pointer; /* Pointer cursor on hover */
    border-radius: 5px; /* Rounded corners */
    transition: background-color 0.3s ease; /* Smooth hover effect */
}

    .custom-button:hover {
        background-color: #45a049; /* Darker green on hover */
    }
