/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/JSP_Servlet/CascadeStyleSheet.css to edit this template
*/
/* 
    Created on : 20 Oct, 2023, 10:17:57 PM
    Author     : user
*/

body {
    overflow-x: hidden;
}

/* Header Styles */
#header {
    height: 60px;
    background-color: #3700B3;
    color: white;
}

/* Toggle button style */
.toggle-sidebar-btn {
    font-size: 22px;
    cursor: pointer;
}

/* Main content container */
#main-content,
#footer {
    /*margin-top: 60px;*/
}

.section {
    padding: 20px;
}

.search-bar {
    min-width: 320px;
    padding: 0 20px;
}

@media (max-width: 767px) {
    .search-bar {
        position: fixed;
        top: 50px;
        left: 0;
        right: 0;
        padding: 20px;
        box-shadow: 0px 0px 15px 0px rgba(1, 41, 112, 0.1);
        background: white;
        transition: 0.3s;
        visibility: hidden;
        opacity: 0;
        z-index: 1000;
    }

    .search-bar-show {
        top: 60px;
        visibility: visible;
        opacity: 1;
    }
}

.search-form {
    width: 100%;
}

.search-form input {
    border: 0;
    font-size: 14px;
    color: #012970;
    border: 1px solid rgba(1, 41, 112, 0.2);
    padding: 7px 38px 7px 8px;
    border-radius: 3px;
    transition: 0.3s;
    width: 100%;
}

.search-form button {
    border: 0;
    padding: 0;
    margin-left: -30px;
    background: none;
}