/*
Theme Name: OAMBPO ERT
Theme URI: https://openaccessbpo.com/
Author: Anjo Ralph Mingo
Author URI: https://anjorapp.github.io/
Description: 
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mycustomtheme
*/

/* Example Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #333;
    background-color: #f4f4f4;
    line-height: 1.6;
}

a {
    color: #1a8fce;
    text-decoration: none;
}

a:hover {
    color: #c74a2e;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #212c31;
    font-weight: 700;
    margin: 0.5rem 0;
}

p {
    margin: 1rem 0;
}

.cursor-pointer {
    cursor: pointer;
}


.dropdown-menu {
    max-height: 150px;
    overflow-y: auto;
    width: 100%;
}

#mobile::-webkit-inner-spin-button, 
#mobile::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

#mobile {
    -moz-appearance: textfield; /* For Firefox */
}

/* Loader Container */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #00000078;
}

.loader {
    border: 8px solid #f3f3f3;
    /* Light gray background */
    border-top: 8px solid #3498db;
    /* Blue color for the spinning part */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    /* Spinning animation */
}

/* Spinning Animation */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}