body {
    font-family: 'Inter', sans-serif;
    background-color: #f3f4f6;
}
.container {
    max-width: 768px;
}
input, textarea, select {
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    transition: all 0.2s ease;
}
input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
.form-section {
    background-color: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.btn-primary {
    background-color: #1e40af;
    color: white;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}
.btn-primary:hover {
    background-color: #1c367e;
}
.btn-primary:active {
    transform: scale(0.98);
}
.btn-secondary {
    background-color: #e5e7eb;
    color: #4b5563;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}
.btn-secondary:hover {
    background-color: #d1d5db;
}
.btn-secondary:active {
    transform: scale(0.98);
}
.info-box {
    background-color: #fef3c7;
    border-left: 4px solid #f59e0b;
    padding: 1rem;
    border-radius: 0.5rem;
}
.success-box {
    background-color: #d1fae5;
    border-left: 4px solid #10b981;
    padding: 1rem;
    border-radius: 0.5rem;
}
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
.modal-content {
    background-color: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    width: 90%;
    max-width: 400px;
}
.pin-input {
    font-size: 1.5rem;
    text-align: center;
    letter-spacing: 0.5rem;
    width: 200px;
    margin: 1rem auto;
}
.hidden {
    display: none;
}
.gdpr-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1e40af;
    color: white;
    padding: 1rem;
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}
.gdpr-banner.show {
    transform: translateY(0);
}
.privacy-content {
    max-height: 70vh;
    overflow-y: auto;
    text-align: left;
}
.privacy-content h4 {
    font-weight: 600;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}
.privacy-content p, .privacy-content li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}
/* Instructions Panel */
.instructions-container {
    background-color: #eef2ff;
    border-radius: 1rem;
    border: 1px solid #c7d2fe;
}
.instructions-toggle-btn {
    width: 100%;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #312e81;
    cursor: pointer;
}
.instructions-toggle-btn svg {
    transition: transform 0.3s ease;
}
.instructions-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}
/* Photo Upload */
.photo-section {
    background-color: #f9fafb;
    padding: 1rem;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
}
.photo-preview-container {
    width: 100px;
    height: 100px;
    border-radius: 0.5rem;
    overflow: hidden;
    flex-shrink: 0;
}
.photo-preview-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* Timestamp Display */
.timestamp-display {
    text-align: center;
    font-size: 0.875rem;
    color: #6b7280;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

