/* ===========================
   YCR-OPS Standard Buttons
   =========================== */

button {
    background-color: #003366;
    color: white;
    border: none;
    border-radius: 12px;
    padding: 16px 28px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    min-width: 220px;
    transition: 0.25s;
}

button:hover {
    background-color: #0055aa;
}

button:active {
    transform: scale(0.98);
}

.action-buttons{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    margin-top:25px;
}

/* ==========================
   YCR-OPS Standard Table
   ========================== */

.styled-table {
    width: 100%;
    .table-container {
    overflow-x: auto;
}
    border-collapse: collapse;
    margin-top: 15px;
}

.styled-table th {
    background-color: #003366;
    color: white;
    padding: 12px 14px;
    text-align: center;
}

.styled-table td {
    padding: 10px 14px;
    vertical-align: middle;
    text-align: center;
}

/* Zebra striping */
.styled-table tbody tr:nth-child(even) {
    background-color: #f7f7f7;
}

.styled-table tbody tr:nth-child(odd) {
    background-color: #ffffff;
}

/* Hover effect */
.styled-table tbody tr:hover {
    background-color: #dbeeff;
}

/* ==========================
   General Layout
   ========================== */

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f4f7fb;
    color: #333;
    margin: 0;
    padding: 20px;
}

h1 {
    color: #003366;
    margin-bottom: 5px;
}

h2 {
    color: #0055aa;
    margin-top: 30px;
}

.card {
    background: white;
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

/* ==========================
   YCR-OPS Input Fields
   ========================== */

input[type="text"],
input[type="password"]{
    width:100%;
    padding:14px;
    margin-top:6px;
    margin-bottom:18px;
    border:1px solid #cfd8e3;
    border-radius:10px;
    font-size:16px;
    box-sizing:border-box;
    background:#ffffff;
}

input[type="text"]:focus,
input[type="password"]:focus{
    outline:none;
    border-color:#0055aa;
    box-shadow:0 0 6px rgba(0,85,170,0.25);
}

/* ==========================
   Dashboard Layout
   ========================== */

.container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
}

.button {
    display: inline-block;
    margin: 10px;
    padding: 16px 28px;
    background-color: #003366;
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: bold;
    transition: 0.25s;
}

.button:hover {
    background-color: #0055aa;
}

/* ==========================
   Dashboard Cards
   ========================== */

.dashboard-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
    margin:25px 0;
}

.stat-card{
    text-align:center;
}

.stat-card h3{
    color:#003366;
    margin-bottom:15px;
}

.stat-number{
    font-size:48px;
    font-weight:bold;
    color:#0055aa;
}

