.tps-photo-upload-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.tps-webcam-wrapper {
    text-align: center;
    margin: 20px 0;
}

.tps-webcam-box {
    display: inline-block;
    border: 3px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 15px;
}

#tps-webcam {
    display: block;
    width: 100%;
    max-width: 500px;
    background: #000;
}

#tps-canvas {
    display: none;
}

#tps-take-photo {
    padding: 10px 20px;
    font-size: 16px;
    background: #0073aa;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#tps-take-photo:hover {
    background: #005a87;
}

#tps-take-photo:disabled {
    background: #cccccc;
    cursor: not-allowed;
}

.tps-spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: tps-spin 1s linear infinite;
    margin: 0 auto 15px;
}

@keyframes tps-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.tps-error {
    color: #dc3232;
    padding: 10px;
    background: #fbeaea;
    border-radius: 4px;
    margin-top: 15px;
}