.option-card {
    border: 2px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    cursor: url(../dashboard/images/icon/pointer.svg), pointer !important;
    transition: all 0.3s;
    height: 100%;
}
.option-card:hover {
    border-color: #ff6725;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.option-card.selected {
    border-color: #ff6725;
    background: #fff5f1;
}
.document-form {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    display: none;
}
.pdf-viewer-container {
    display: none;
    margin-top: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
}
.pdf-controls {
    background: white;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    display: none;
}
.loader-content {
    background: white;
    padding: 10%;
    border-radius: 8px;
    text-align: center;
    height: 100%;
}
.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #ff6725;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
#pdfFrame {
    width: 100%;
    height: 800px;
    border: none;
    border-radius: 8px;
    background: white;
}
.download-btn {
    background: #ff6725;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: url(../dashboard/images/icon/pointer.svg), pointer !important;
    transition: background 0.3s;
}
.download-btn:hover {
    background: #e55a1f;
}
