﻿/*Guest Dashboard*/
body {
    background-color: white !important;
    font-family: 'Roboto', sans-serif !important;
}
.table-wrapper {
    width: 100% !important;
    overflow-x: auto !important;
    white-space: nowrap !important; 
}
.form-control, .form-select {
    box-shadow: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

    .form-control:focus, .form-select:focus {
        border-color: #28a745;
        box-shadow: 0 0 8px rgba(40, 167, 69, 0.3);
        outline: none;
    }
.btn-success {
    background-color: #63AC45 !important;
    border: none !important;
}

.btn-success:hover {
    background-color: black !important;
    color: white !important;
}
.custom-file-upload {
    cursor: pointer !important;
}

.btn-search {
    background-color: #63AC45 !important;
    color: white !important;
    border: none !important;
    height: 2.3rem !important;
    border-radius: 0.3rem !important;
    width: 6rem !important;
}

.btn-search:hover {
    background-color: #1C231F !important;
}

.search-bar {
    width: 100% !important;
    max-width: 400px !important;
}

.info-text {
    font-size: 14px !important;
    color: gray !important;
}

.no-results {
    font-size: 16px !important;
    color: red !important;
}


@media (max-width: 768px) {
    .btn-login, .btn-register {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .navbar-nav.p-3.p-lg-0 {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

        .navbar-nav.p-3.p-lg-0 .btn + .btn {
            margin-left: 0;
        }
}