﻿/* ===== MASTER TABLE STYLE ===== */
.master-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    font-family: 'Tahoma', sans-serif;
}

    .master-table th,
    .master-table td {
        border: 1px solid #ddd;
        padding: 10px;
        text-align: left;
        vertical-align: middle;
    }

    .master-table th {
        background-color: #3498db;
        color: #fff;
        position: sticky;
        top: 0;
        z-index: 2;
    }

    .master-table tr:nth-child(even) {
        background-color: #f9f9f9;
    }

    .master-table tr:hover {
        background-color: #eef5ff;
    }

    /* Optional */
    .master-table .nowrap {
        white-space: nowrap;
    }


.form-label-app {
    font-size: 15px;
    font-weight: 600;
    color: #212529;
    margin-bottom: 4px;
    font-family: 'Tahoma', sans-serif;
}

.form-control:focus {
    box-shadow: none;
    border-color: #0d6efd;
}

.master-header {
    background-color: #1aa3b8; /* teal-blue like image */
    color: white;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 28px;
    font-weight: 600;
}

