/*registration, Login & Logout design*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body { 
    background-color: #CFD8DC; 
    color: #333;
}
.form-container {
    max-width: 500px;
    margin: 80px auto;
    background: rgba(255,255,255,0.9);
    padding: 20px;
    border-radius: 10px;
    flex-direction: column;
    gap: 10px;
    display: block;
}
h2 { text-align: center; 
    margin-bottom: 30px; 
    font-size: 35px; 
    color: #4e54c8;
}

.form-container label {
    text-align: left;
    color: #1219b3;
    font-weight: bold;
    font-size: 15px;
}
.form-container input {
    width: 100%;
    padding: 10px;
    margin: 5px auto;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.form-container input:focus {
    outline: none;
    border-color: #4e54c8;
    box-shadow: 0 0 5px rgba(78, 84, 200, 0.5);
}
.form-container button {
    padding: 10px 20px;
    border: none;
    background: #f7941d;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    margin: 0px auto;
}
.form-container button:hover {
    background: #b05709;
}

@media (max-width: 991px){
   .form-container {
       width: 92%;
       margin: 30px auto;
    }
    h2 {
        margin-top: 15px;
        margin-bottom: 30px;
        font-weight: 800;
        }
}
/*Super Admin Dashboard*/
table { 
    width:100%; 
    border-collapse: collapse; 
    margin:20px 0;
    }

table th, table td { 
    padding:10px; 
    text-align:left;
    font-size: 12px;
    }

table th { 
    background:#27ae60; 
    color:#fff;
    text-align: center;
    }

table tr:nth-child(even) { 
    background:#f2f2f2;
    }

table a { 
    padding:5px 10px; 
    background:#f7941d; 
    color:#fff; 
    text-decoration:none; 
    border-radius:5px; 
    margin-right:5px;
    }

table a:hover { 
    background:#e67e22;
    }



/*Super Admin-User-Role Dashboard*/
/* General Layout */
/*body {
    font-family: Arial, sans-serif;
    background: #f4f6f9;
    margin: 0;
    padding: 20px;
}

h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
}

h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: #444;
}

/* Dashboard Counts */
/*p {
    background: #007bff;
    color: #fff;
    display: inline-block;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: bold;
}
*/
/* Table Style */
/*
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 25px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}
*/
thead {
    background: #007bff;
    color: white;
    text-align: left;
}

th, td {
    padding: 12px 15px;
    border-bottom: 1px solid #ddd;
}

tr:hover {
    background: #f1f1f1;
}

/* Buttons */
a, button {
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}

a {
    color: #fff;
    margin-right: 5px;
}

a[href*="approve"] {
    background: #28a745;
}

a[href*="disapprove"] {
    background: #dc3545;
}

a[href*="move"] {
    background: #17a2b8;
}

a:hover, button:hover {
    opacity: 0.8;
}

/* Registration Form */
//form {
    display: flex;
    gap: 5px;
    align-items: center;
    display: block;
}
    /*End*/

select {
    padding: 6px 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

button[name="change_role"] {
    background: #007bff;
    color: #fff;
}


/*test style see more btn*/
.style {
    background-color: tomato;
    color: red;
    display: inline-block;
    padding: 8px;
    border-radius: 10px;
    text-decoration: none;
}


/*tasting css for search fields*/
.search-section { 
    padding: 20px; 
    text-align: center; 
    } 

.search-section input, .search-section button { 
    padding: 10px; 
    margin: 5px; 
    border-radius: 5px; 
    } 

.search-section input:focus {
  outline: none;
  border-color: #4e54c8;
  box-shadow: 0 0 5px rgba(78, 84, 200, 0.5);
}