
.hp-claim-listing-container {
    font-family: 'Outfit', 'Inter', sans-serif;
    color: #1e293b;
    background-color: #f8fafc;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 0 0 80px;
    box-sizing: border-box;
}

.hp-claim-listing-container * {
    box-sizing: border-box;
}

/* Header Section */
.hp-claim-header {
    background: #0b1329;
    color: #ffffff;
    text-align: center;
    padding: 60px 20px;
    margin-bottom: 48px;
    width: 100%;
    box-sizing: border-box;
}

.hp-claim-header h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 38px;
    font-weight: 800;
    margin: 0 0 12px;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.hp-claim-header p {
    font-size: 16px;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Main Grid Layout */
.hp-claim-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Benefit Card */
.hp-benefit-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 32px;
    height: fit-content;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
}

.hp-benefit-card h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #0b1329;
    margin: 0 0 24px 0;
}

.hp-benefit-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hp-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.hp-benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: #fef08a;
    color: #854d0e;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 2px;
}

.hp-benefit-icon svg {
    width: 12px;
    height: 12px;
}

.hp-benefit-text h3 {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 4px 0;
}

.hp-benefit-text p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* Form Card */
.hp-form-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
    position: relative;
}

.hp-form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.hp-form-field {
    margin-bottom: 24px;
    position: relative;
}

.hp-form-field label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 8px;
}

.hp-form-field label .required {
    color: #ef4444;
    margin-left: 2px;
}

.hp-form-field input[type="text"],
.hp-form-field input[type="email"],
.hp-form-field textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    color: #1e293b;
    background: #ffffff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
}

.hp-form-field input:focus,
.hp-form-field textarea:focus {
    outline: none;
    border-color: #0b1329;
    box-shadow: 0 0 0 3px rgba(11, 19, 41, 0.1);
}

.hp-form-field input::placeholder,
.hp-form-field textarea::placeholder {
    color: #94a3b8;
}

.hp-form-field textarea {
    min-height: 120px;
    resize: vertical;
}

/* Autocomplete Dropdown styling */
.hp-autocomplete-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    margin-top: 4px;
    max-height: 220px;
    overflow-y: auto;
    z-index: 50;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    display: none;
}

.hp-autocomplete-item {
    padding: 10px 14px;
    font-size: 14px;
    cursor: pointer;
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.15s ease;
}

.hp-autocomplete-item:last-child {
    border-bottom: none;
}

.hp-autocomplete-item:hover {
    background: #f8fafc;
}

.hp-autocomplete-item .claimed-label {
    float: right;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 4px;
    background: #fee2e2;
    color: #991b1b;
    font-weight: 500;
}

/* Styled upload dropzone */
.hp-upload-zone {
    border: 2px dashed #cbd5e1;
    border-radius: 8px;
    padding: 24px;
    text-align: center;
    background: #f8fafc;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.hp-upload-zone:hover {
    border-color: #0b1329;
    background: #f1f5f9;
}

.hp-upload-zone svg {
    width: 32px;
    height: 32px;
    color: #64748b;
    margin-bottom: 8px;
}

.hp-upload-zone .zone-title {
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 4px;
}

.hp-upload-zone .zone-desc {
    font-size: 12px;
    color: #64748b;
}

.hp-upload-zone input[type="file"] {
    display: none;
}

.hp-selected-file-info {
    display: none;
    align-items: center;
    justify-content: space-between;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 8px;
    padding: 12px 14px;
    margin-top: 10px;
}

.hp-selected-file-info span {
    font-size: 13px;
    color: #166534;
    font-weight: 500;
}

.hp-selected-file-info button {
    background: none;
    border: none;
    color: #b91c1c;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    padding: 0;
}

/* Submit Button */
.hp-submit-btn {
    width: 100%;
    background: #facc15;
    color: #0b1329;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease;
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin-top: 10px;
}

.hp-submit-btn:hover {
    background: #eab308;
}

.hp-submit-btn:disabled {
    background: #cbd5e1;
    color: #64748b;
    cursor: not-allowed;
}

/* Messages */
.hp-claim-msg {
    padding: 16px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 24px;
    display: none;
}

.hp-claim-msg.success {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
    display: block;
}

.hp-claim-msg.error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
    display: block;
}

.hp-already-claimed-notice {
    background: #fee2e2;
    border: 1px solid #fca5a5;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 24px;
    color: #991b1b;
    font-size: 14px;
    font-weight: 500;
}

/* Responsive styles */
@media (max-width: 800px) {
    .hp-claim-content {
        grid-template-columns: 1fr;
    }
    .hp-form-row-2 {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .hp-form-card {
        padding: 24px;
    }
    .hp-claim-header h1 {
        font-size: 28px;
    }
}

/* Verification Code Panel Styling */
.hp-verification-card {
    text-align: center;
    max-width: 540px !important;
    margin: 0 auto;
    padding: 48px 40px !important;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
}
.hp-verification-icon-wrapper {
    width: 80px;
    height: 80px;
    background: #eff6ff;
    color: #1e3a5f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 24px;
    box-shadow: 0 8px 16px -4px rgba(30, 58, 95, 0.1);
}
.hp-verification-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
    margin-top: 0;
}
.hp-verification-subtitle {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 30px;
    margin-top: 0;
}
.hp-verification-code-container {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
}
.hp-verification-code-container input {
    width: 48px;
    height: 56px;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    border: 1.5px solid #cbd5e1;
    border-radius: 10px;
    background: #f8fafc;
    transition: all 0.2s ease;
    font-family: 'Inter', sans-serif;
}
.hp-verification-code-container input:focus {
    border-color: #1e3a5f;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.1);
    outline: none;
}
.hp-verification-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}
.hp-verification-actions button {
    width: 100%;
}

/* Custom Dropdown Styling */
.hp-custom-dropdown {
    position: relative;
    width: 100%;
}

.hp-dropdown-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    color: #1e293b;
    background: #ffffff;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
}

.hp-custom-dropdown.active .hp-dropdown-trigger {
    border-color: #0b1329;
    box-shadow: 0 0 0 3px rgba(11, 19, 41, 0.1);
}

.hp-trigger-arrow svg {
    width: 16px;
    height: 16px;
    color: #64748b;
    transition: transform 0.2s ease;
}

.hp-custom-dropdown.active .hp-trigger-arrow svg {
    transform: rotate(180deg);
}

.hp-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    margin-top: 4px;
    max-height: 300px;
    display: none;
    flex-direction: column;
    z-index: 100;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.hp-custom-dropdown.active .hp-dropdown-menu {
    display: flex;
}

.hp-dropdown-search-wrapper {
    position: relative;
    padding: 8px;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
}

.hp-dropdown-search-wrapper .hp-search-icon {
    position: absolute;
    left: 16px;
    width: 16px;
    height: 16px;
    color: #94a3b8;
    pointer-events: none;
}

.hp-dropdown-search-wrapper input {
    width: 100%;
    padding: 8px 12px 8px 32px !important;
    border: 1px solid #cbd5e1 !important;
    border-radius: 6px !important;
    font-size: 13px !important;
    font-family: 'Inter', sans-serif;
    box-sizing: border-box;
}

.hp-dropdown-items {
    max-height: 220px;
    overflow-y: auto;
}

.hp-dropdown-item {
    padding: 10px 14px;
    font-size: 14px;
    cursor: pointer;
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.15s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hp-dropdown-item:last-child {
    border-bottom: none;
}

.hp-dropdown-item:hover {
    background: #f8fafc;
}

.hp-dropdown-item .claimed-label {
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 4px;
    background: #fee2e2;
    color: #991b1b;
    font-weight: 500;
}

.hp-dropdown-loading, .hp-dropdown-no-results {
    padding: 16px;
    text-align: center;
    font-size: 13px;
    color: #64748b;
}

