.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 1000;
}
 
/* Modal Container */
.modal {
    background: white;
    border-radius: 12px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-height: 90vh;
    overflow-y: auto;
}
 
/* Modal Header */
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 0.5px solid #e0e0e0;
    position: sticky;
    top: 0;
    background: white;
}
 
.modal-title {
    font-size: 18px;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0;
}
 
.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 32px;
    height: 32px;
}
 
.modal-close:hover {
    color: #4caf50;
}
 
/* Modal Body */
.modal-body {
    padding: 24px;
}
 
/* Modal Footer */
.modal-footer {
    padding: 16px 24px;
    border-top: 0.5px solid #e0e0e0;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    background: white;
    position: sticky;
    bottom: 0;
}
 
/* Progress Bar */
.progress-bar {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}
 
.progress-step {
    flex: 1;
    height: 4px;
    background: #e0e0e0;
    border-radius: 2px;
}
 
.progress-step.active,
.progress-step.done {
    background: #4caf50;
}
 
/* Form Elements */
.form-group {
    margin-bottom: 16px;
}
 
.form-label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 6px;
}
 
.form-input,
.form-textarea {
    width: 100%;
    padding: 10px 12px;
    border: 0.5px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
}
 
.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #4caf50;
    background: rgba(76, 175, 80, 0.02);
}
 
.form-textarea {
    resize: vertical;
    min-height: 80px;
}
 
/* Listing Items */
.listing-item {
    padding: 12px;
    border: 0.5px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}
 
.listing-item:hover {
    border-color: #4caf50;
    background: rgba(76, 175, 80, 0.05);
}
 
.listing-item label {
    cursor: pointer;
    font-size: 14px;
    color: #1a1a1a;
    flex: 1;
    margin: 0;
}
 
/* Buttons */
.btn {
    padding: 10px 18px;
    border: 0.5px solid #ccc;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    background: white;
    color: #1a1a1a;
}
 
.btn:hover {
    background: #f5f5f5;
}
 
.btn-primary {
    background: #4caf50;
    color: white;
    border: none;
}
 
.btn-primary:hover {
    background: #45a049;
}
 
/* Info Box */
.info-box {
    background: #f0f7f0;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 16px;
    border-left: 3px solid #4caf50;
}
 
.info-box-title {
    font-size: 13px;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0 0 8px 0;
}
 
.info-box-item {
    font-size: 13px;
    color: #666;
    margin: 4px 0;
}
 
/* Success Message */
.success-message {
    text-align: center;
    padding: 20px 0;
}
 
.success-icon {
    font-size: 48px;
    margin-bottom: 16px;
    width: 60px;
    height: 60px;
    background: #e8f5e9;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
 
.success-title {
    font-size: 18px;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0 0 8px 0;
}
 
.success-text {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}
 
/* Hidden */
.hidden {
    display: none !important;
}
.claim-spinner{
    width:40px;
    height:40px;
    border:4px solid #e5e5e5;
    border-top:4px solid #4caf36;
    border-radius:50%;
    animation:claimSpin 0.8s linear infinite;
    margin:0 auto 10px;
}

@keyframes claimSpin{
    100%{
        transform:rotate(360deg);
    }
}