/* ========== DTMS GLOBAL UI ========== */

body {
    background: #f4f6f9;
}

.dtms-container {
    max-width: 420px;
    margin: 40px auto;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.dtms-title {
    text-align: center;
    margin-bottom: 20px;
    font-weight: 600;
}

.dtms-form-group {
    margin-bottom: 15px;
}

.dtms-form-group input,
.dtms-form-group select {
    width: 100%;
    padding: 10px 12px;
    border-radius: 6px;
    border: 1px solid #ddd;
}

.dtms-btn {
    width: 100%;
    padding: 10px;
    background: #0d6efd;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 500;
}

.dtms-btn:hover {
    background: #0b5ed7;
}

.dtms-link {
    text-align: center;
    margin-top: 15px;
}

.dtms-link a {
    text-decoration: none;
    color: #0d6efd;
    font-size: 14px;
}

/* DASHBOARD */
.dtms-dashboard {
    max-width: 900px;
    margin: 30px auto;
}

.dtms-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    margin-bottom: 20px;
}

.dtms-card h4 {
    margin-bottom: 15px;
    font-weight: 600;
}

/* TABLE */
.dtms-table {
    width: 100%;
    border-collapse: collapse;
}

.dtms-table th,
.dtms-table td {
    padding: 10px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}
