﻿/* 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. */

/*body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f4f4f4;
}*/
.carousel {
    width: 800px;
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    box-sizing: border-box;
    padding: 20px;
    background: #fff;
    border: 1px solid #ddd;
    text-align: center;
}

    .carousel-slide h2 {
        margin: 0 0 10px;
    }

    .carousel-slide p {
        vertical-align: middle;
        margin: 30px;
    }

.carousel-buttons {
    position: absolute;
    top: 20%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

    .carousel-buttons button {
        background-color: #333;
        color: #fff;
        border: none;
        padding: 10px 20px;
        cursor: pointer;
        opacity: 0.7;
    }

        .carousel-buttons button:hover {
            opacity: 1;
        }
   

.container {
    display: flex;
    flex-direction: row;
    width: 90%;
}


.subcontainer {
    margin: 10px;
    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;
}

.txtGeneralsmall {
    font: 15px arial;
    text-align: initial;
}

.txtGeneralstart {
    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;
}

div.withouttransbox {
    margin: 30px;
    background-color: whitesmoke;
    /*border: 1px solid black;*/
    opacity: 0.7;
}

.column {
    flex: 30%;
    /*        height: 100%;*/
    align-content: center;
}

.column1 {
    flex: 90%;
    /*        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 {
    padding: 10px;
    font-size: 16px;
    border: 2px solid #4CAF50;
    border-radius: 5px;
    outline: none;
    transition: border-color 0.3s ease-in-out;
}

.custom-textbox2 {
    padding: 10px;
    font-size: 12px;
    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 */
    }
