/*////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
                                                /*whole app*/

body{
    font-family: Arial, sans-serif;
}

.myheader {
    padding: 5px 0;
    background-color: #e9ecef;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: flex-end;
    padding-right: 20px;
}

.myheader button {
    margin-left: 15px; /* Add space between buttons */
}

@media (max-width: 768px) {
    .myheader {
        padding: 5px 0;
        background-color: #e9ecef;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        display: flex;
        justify-content: flex-end;
        padding-right: 5px;
    }
    .myheader button {
        margin-left: 10px; /* Add space between buttons */
    }
}


.fixed-history-top {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: white;
}
@media (max-width: 768px) {
    .fixed-history-top {
        position: static;
    }
}

.between-content-shadow {
    padding: 1.5rem;
    border: 1px solid #ced4da; /* Slightly darker for more definition */
    border-radius: 0.5rem; /* Slightly rounder corners */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); /* Stronger, deeper shadow */
    background-color: #f8f9fa; /* Very light gray background for contrast */
    margin: 10px;
}


.h1-intro {
    background: linear-gradient(to right, #2a59e3, #7fe9ff);
    color: #fff;
    padding: 15px 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    font-size: 1.5rem;
    text-align: center;
}
.container {
    max-width: 500px;
    text-align: center;
}

.image-bordered{
    border: 2px solid #007bff;
    padding: 5px;
    border-radius: 5px;
    max-width: 100%;
}

.blue-border-margin-top{
    border: 1px solid #66a9e3;
    padding: 5px;
    border-radius: 5px;
    max-width: 100%;
    margin-top: 25px;
}




/*////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
                                                /*newsoft/newfile*/
.fw-form label {
    min-width: 100px;
    font-weight: bold;
}
@media (max-width: 768px) {
    .fw-form .form-group {
        flex-direction: column;
        align-items: stretch;
    }
}

