/* mpt/public/css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #f8fafc;
}

/* Form Card Design */
.mpt-card {
    background-color: white;
    border-radius: 1rem;
    border: 1px solid #f1f5f9;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.mpt-card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.mpt-card-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #f8fafc;
    color: #1e293b;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: -0.025em;
}

/* Input Standards */
.mpt-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.mpt-input {
    width: 100%;
    height: 3rem;
    padding-left: 1rem;
    padding-right: 1rem;
    background-color: rgba(248, 250, 252, 0.5);
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #334155;
    transition: all 0.2s;
    outline: none;
}

.mpt-input:focus {
    border-color: #3b82f6;
    background-color: white;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

/* Button Standards */
.btn-primary {
    height: 3rem;
    padding-left: 2rem;
    padding-right: 2rem;
    background-color: #2563eb;
    color: white;
    font-weight: 700;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.2);
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-primary:hover { background-color: #1d4ed8; }
.btn-primary:active { transform: scale(0.95); }

.btn-secondary {
    height: 3rem;
    padding-left: 2rem;
    padding-right: 2rem;
    background-color: #f1f5f9;
    color: #475569;
    font-weight: 700;
    border-radius: 0.5rem;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-secondary:hover { background-color: #e2e8f0; }

/* Table Standards */
.mpt-table-container {
    background-color: white;
    border-radius: 1rem;
    border: 1px solid #f1f5f9;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.mpt-table {
    width: 100%;
    text-align: left;
    border-collapse: collapse;
}

.mpt-table thead {
    background-color: rgba(248, 250, 252, 0.5);
    font-size: 0.625rem;
    font-weight: 900;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.mpt-table th {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #f1f5f9;
}

.mpt-table td {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #f8fafc;
    font-size: 0.875rem;
    font-weight: 500;
    color: #475569;
}

.mpt-table tr:last-child td {
    border-bottom: 0;
}

/* Utility */
.scroller-hide::-webkit-scrollbar { display: none; }
