body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background-color: #f0f0f0;
}

.container {
    text-align: center;
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
}

.captcha-container {
    margin: 2rem 0;
}

.objects-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
}

.draggable {
    position: fixed;
    font-size: 4rem;
    cursor: grab;
    user-select: none;
    transition: transform 0.2s ease;
    z-index: 4;
}

#dropZone {
    width: 200px;
    height: 200px;
    border: 2px dashed #666;
    border-radius: 10px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    color: #666;
    position: relative;
    z-index: 3;
    background-color: white;
}

#dropZone.dragover {
    background-color: #e0e0e0;
    border-style: solid;
}

#message {
    margin: 1rem 0;
    font-weight: bold;
}

button {
    padding: 0.5rem 1rem;
    font-size: 1rem;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 5;
}

button:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
    opacity: 0.6;
}

button.active {
    background-color: #007bff;
    cursor: pointer;
    opacity: 1;
}

button.active:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.metrics-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.metrics {
    margin: 1.5rem 0;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 5px;
}

.metrics p {
    margin: 0.5rem 0;
    font-size: 1.1rem;
}

.analysis {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #666;
    margin: 1rem 0;
}

.modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.modal-buttons button {
    padding: 0.5rem 1rem;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#tryAgainBtn {
    background-color: #28a745;
}

#tryAgainBtn:hover {
    background-color: #218838;
}

#closeModalBtn {
    background-color: #6c757d;
}

#closeModalBtn:hover {
    background-color: #5a6268;
}

.path-canvas {
    width: 100%;
    height: 200px;
    margin: 1rem 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f8f9fa;
}

.modal-content {
    max-width: 600px;
}

.metrics p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.draggable:hover {
    transform: scale(1.2);
}

.draggable.dragging {
    transform: scale(1.2);
}

.draggable:active {
    cursor: grabbing;
} 

button:hover:not(:disabled) {
    background-color: #0056b3;
    transform: translateY(-2px);
}

button:active:not(:disabled) {
    transform: translateY(0);
}

.movement-analysis {
    font-style: italic;
    color: #666;
    font-size: 0.9em;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

.metrics p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.7rem 0;
}