body {
    font-family: 'Arial', sans-serif;
    text-align: center;
    background: linear-gradient(to right, #2193b0, #6dd5ed);
    color: white;
}

.container {
    width: 90%;
    max-width: 500px;
    margin: 20px auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    color: black;
}

h1 {
    color: #333;
}

button {
    padding: 10px;
    margin: 10px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#start-analysis { background-color: green; color: white; }
#stop-analysis { background-color: red; color: white; }
#guide-btn { background-color: #f39c12; color: white; }

.circle-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    font-weight: bold;
    background-color: #ddd;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: black;
}

/* 📘 Guide Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 20px;
    width: 80%;
    max-width: 400px;
    border-radius: 10px;
    text-align: center;
    color: black;
}

.close {
    color: red;
    float: right;
    font-size: 24px;
    cursor: pointer;
}

/* 📱 Mobile Responsiveness */
@media screen and (max-width: 600px) {
    .container {
        width: 95%;
    }
    .circle {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 12px;
    }
}
/* 🎯 Custom Cursor Styling */
.cursor {
    position: absolute;
    width: 25px;  /* Increased size for better visibility */
    height: 25px;
    background-color: #FFD700;  /* Deep yellow cursor */
    border-radius: 50%;  /* Circular shape */
    border: 3px solid #FF4500;  /* Orange border for contrast */
    box-shadow: 0px 0px 10px rgba(255, 215, 0, 0.9); /* Glowing effect */
    transition: all 0.2s ease-in-out;  /* Smooth movement */
    pointer-events: none; /* Prevents interference with buttons */
    z-index: 1000;
}
