html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
    font-family: Tahoma, Segoe UI, sans-serif;
    background-color: #f5f6fa;
    margin: 0;
    padding: 0;
    color: #2f3640;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
    text-align: start;
}

.container {
    max-width: 1100px;
    margin: 30px auto;
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

h1, h2 {
    margin-bottom: 20px;
    color: #2d3436;
}

.table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

    .table th {
        background-color: #34495e;
        color: white;
        padding: 12px;
        text-align: left;
    }

    .table td {
        padding: 10px;
        border-bottom: 1px solid #ecf0f1;
    }

    .table tr:hover {
        background-color: #f1f2f6;
    }

.badge {
    padding: 6px 12px;
    border-radius: 20px;
    color: white;
    font-size: 13px;
}

.status-0 {
    background: #7f8c8d;
}

.status-1 {
    background: #f39c12;
}

.status-2 {
    background: #2ecc71;
}

.btn {
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 14px;
    text-decoration: none;
    border: none;
    display: inline-block;
    cursor: pointer;
}

.btn-view {
    background-color: #3498db;
    color: white;
}

.btn-process {
    background-color: #f39c12;
    color: white;
}

.btn-complete {
    background-color: #2ecc71;
    color: white;
}

.action-group a {
    margin-right: 5px;
}
