* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--fontisi);
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

footer {
    margin: 0;
    padding: 0;
}

.cek-status-container {
    padding: 40px;
    max-width: 800px;
    width: 100%;
}

h1 {
    color: var(--blue);
    text-align: center;
    margin-bottom: 30px;
    font-size: 2em;
    font-family: 'Abhaya Libre', serif;
}

.search-form {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.input-group {
    flex: 1;
    position: relative;
}

input[type="text"] {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
}

input[type="text"]:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(90, 103, 216, 0.1);
}

.btn-search {
    padding: 15px 30px;
    background: var(--blue);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-search:hover {
    background: var(--bluehover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(90, 103, 216, 0.3);
}

.tabs {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    border-top: 2px solid #e2e8f0;
    padding-top: 20px;
}

.tab {
    flex: 1;
    padding: 12px 20px;
    background: #f7fafc;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    color: #4a5568;
}

.tab:hover {
    background: #edf2f7;
    border-color: #cbd5e0;
}

.alert {
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 14px;
}

.alert-error {
    background: #fff5f5;
    color: #c53030;
    border: 2px solid #feb2b2;
}

.info-text {
    text-align: center;
    color: var(--blue);
    font-size: 14px;
    margin-top: 20px;
    line-height: 1.6;
}

/* HASIL STATUS */
.status-result {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 3px solid #e2e8f0;
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.status-result h2 {
    color: black;
    text-align: center;
    margin-bottom: 10px;
    font-size: 1.5em;
}

.kode-pengajuan {
    text-align: center;
    color: var(--blue);
    font-weight: bold;
    font-size: var(--sizesubjudul);
    margin-bottom: 15px;
}

.status-badge {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: bold;
    margin: 20px 0;
    font-size: 14px;
}

.status-ditinjau {
    background: #fef3c7;
    color: #92400e;
}

.status-diterima {
    background: #d1fae5;
    color: #065f46;
}

.status-ditolak {
    background: #fee2e2;
    color: #991b1b;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.info-item {
    padding: 20px;
    background: #f7fafc;
    border-radius: 12px;
    border-left: 4px solid #5a67d8;
}

.info-label {
    font-size: 12px;
    color: #718096;
    text-transform: uppercase;
    margin-bottom: 5px;
    font-weight: bold;
}

.info-value {
    font-size: 16px;
    color: #2d3748;
    font-weight: 500;
}

.btn-reset {
    display: block;
    width: 100%;
    padding: 12px;
    background: #e2e8f0;
    color: #4a5568;
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
    margin-top: 20px;
    transition: all 0.3s ease;
    border: none;
    font-size: 16px;
    cursor: pointer;
}

.btn-reset:hover {
    background: #cbd5e0;
}

@media (max-width: 640px) {
    .cek-status-container {
        padding: 25px;
    }

    h1 {
        font-size: 1.5em;
    }

    .search-form {
        flex-direction: column;
    }

    .tabs {
        flex-direction: column;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }
}