﻿/* General Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
}

.user-education {
    background-color: #e9ecef;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    text-align: center;
}

    .user-education h3 {
        color: #333;
        margin-bottom: 10px;
    }

    .user-education p {
        color: #555;
        font-size: 14px;
    }

.receipt-container {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    padding: 20px;
}

.upload-section, .capture-section {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    flex: 1;
}

.upload-section {
    margin-right: 10px;
}

.capture-section {
    margin-left: 10px;
}

.camera-container {
    position: relative;
    text-align: center;
}

#cameraFeed {
    border-radius: 8px;
}

.btn {
    width: 100%;
    margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .receipt-container {
        flex-direction: column;
    }

    .upload-section, .capture-section {
        margin: 0;
        margin-bottom: 20px;
    }
}
