.status-check-container {
    max-width: 480px;
    margin: 60px auto;
    background: #ffffff;
    padding: 35px;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
    text-align: center;
}

.status-check-container h1 {
    font-size: 26px;
    margin-bottom: 10px;
    color: #003b80;
}

.status-desc {
    font-size: 15px;
    color: #444;
    margin-bottom: 25px;
}

.input-group {
    position: relative;
    margin-bottom: 20px;
}

.input-group span.material-symbols-outlined {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #005bb5;
    font-size: 22px;
}

.input-group input {
    width: 100%;
    padding: 12px 14px 12px 42px;
    border: 2px solid #d7e3f5;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.25s ease;
}

.input-group input:focus {
    border-color: #005bb5;
    box-shadow: 0 0 6px rgba(0,91,181,0.25);
    outline: none;
}

.status-btn {
    width: 100%;
    padding: 14px;
    background: #005bb5;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 17px;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.15s ease;
}

.status-btn:hover {
    background: #004a94;
    transform: translateY(-2px);
}

#statusResult {
    margin-top: 25px;
    font-size: 16px;
    font-weight: 600;
}

.status-box {
    margin-top: 25px;
    padding: 20px;
    background: #e9f2ff;
    border-left: 4px solid #005bb5;
    border-radius: 8px;
    text-align: left;
    font-size: 16px;
    line-height: 1.6;
}

