* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #fafbfc; /* slightly gray background */
    color: #333;
}

.header {
    background-color: #0d82d6; /* adjusted to match screenshot's blue */
    padding: 10px 0;
}

.header-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo img {
    height: 50px;
}

.contact-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.6);
    color: white;
    padding: 6px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
}

.contact-btn:hover {
    background: rgba(255,255,255,0.1);
}

.main-container {
    max-width: 1300px;
    margin: 40px auto;
    padding: 0 20px;
}

/* Intro Section */
.intro-section {
    margin-bottom: 40px;
}

.intro-section h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 400;
    color: #4a4a4a;
    line-height: 1.4;
    margin-bottom: 15px;
}

.intro-section .highlight {
    color: #0d82d6;
    font-weight: 500;
}

.intro-text {
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    font-weight: 400;
}

/* Verification Method Boxes */
.verification-method-box {
    background: #fff;
    border: 1px solid #e2e8f0;
    display: flex;
    margin-bottom: 30px;
}

.method-left {
    flex: 6;
    display: flex;
    padding: 30px;
    border-right: 1px solid #e2e8f0;
}

.method-number {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #b5b5db;
    background: #fdfdfd;
    border: 1px solid #f0f0f5;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 30px;
    flex-shrink: 0;
}

.method-desc h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 400;
    color: #4a4a4a;
    margin-bottom: 12px;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 12px;
}

.method-desc p {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    font-weight: 400;
}

.method-right {
    flex: 4;
    padding: 30px;
    background-color: #fdfdfd;
}

/* SEARCH FORM */
#search-form {
    display: flex;
    flex-direction: column;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 13px;
    color: #4a5568;
    margin-bottom: 8px;
}

.form-group input {
    padding: 10px 12px;
    border: 1px solid #d1d5db;
    border-radius: 2px;
    font-size: 13px;
    outline: none;
    background: #fff;
}

.form-group input:focus {
    border-color: #0b79d0;
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-icon input {
    width: 100%;
    padding-right: 35px;
}

.calendar-icon {
    position: absolute;
    right: 12px;
    color: #4a5568;
    font-size: 14px;
}

.btn-container {
    text-align: center;
    margin-top: 10px;
}

.search-btn {
    background-color: #0056b3;
    color: white;
    border: none;
    padding: 10px 24px;
    font-size: 15px;
    border-radius: 2px;
    cursor: pointer;
    font-weight: 500;
}

.search-btn:hover {
    background-color: #004494;
}

.search-btn i {
    margin-left: 6px;
    font-size: 12px;
}

/* ERROR MSG */
.error-msg {
    background-color: #ffe6e6;
    color: #d93025;
    padding: 15px 20px;
    border: 1px solid #ffcccc;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 15px;
}

/* RESULTS SECTION */
.results-container {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.card {
    background: white;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}

.left-panel {
    flex: 2;
}

.right-panel {
    flex: 1;
}

.card-header {
    background-color: #0ea5e9;
    color: white;
    padding: 15px 20px;
    border-radius: 4px 4px 0 0;
}

.card-header h2 {
    font-size: 16px;
    font-weight: 600;
}

.grid-details {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
    padding: 20px;
}

.detail-box {
    border: 1px solid #f0f0f0;
    padding: 12px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
}

.detail-box .label {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 6px;
}

.detail-box .value {
    font-size: 14px;
    font-weight: 500;
    color: #1e293b;
}

.verify-another {
    padding: 15px 20px;
    border-top: 1px solid #f0f0f0;
}

.verify-another a {
    color: #0ea5e9;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.verify-another a:hover {
    text-decoration: underline;
}

/* RIGHT PANEL - TABLE */
.table-container {
    padding: 20px;
}

.table-title {
    font-size: 16px;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 15px;
}

.issued-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #e2e8f0;
}

.issued-table th {
    background-color: #8b5cf6;
    color: white;
    text-align: left;
    padding: 12px 15px;
    font-size: 14px;
    font-weight: 500;
}

.issued-table td {
    padding: 12px 15px;
    font-size: 14px;
    border-bottom: 1px solid #e2e8f0;
    color: #4a5568;
}

@media (max-width: 900px) {
    .verification-method-box {
        flex-direction: column;
    }
    .method-left {
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
    }
    .form-row, .results-container {
        flex-direction: column;
    }
    .grid-details {
        grid-template-columns: 1fr;
    }
}
