.gluco-container {
    max-width: 400px;
    margin: 0 auto;
    padding: 15px;
    border-radius: 12px;
    background-color: #f9f9f9;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    font-family: 'Segoe UI', sans-serif;
    color: #333;
}

.gluco-display {
    text-align: center;
    margin-bottom: 15px;
}

#gluco-name {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
}

#sugarlite-mmoll {
    font-size: 28px;
    font-weight: bold;
    color: #007acc;
}

.gluco-mgdl-datetime {
    font-size: 28px;
    color: #ff5722;
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    margin-top: 5px;
}

.gluco-capture-area {
    text-align: center;
    margin: 10px 0;
}

#sugarlite-video {
    width: 100%;
    max-height: 200px;
    border-radius: 8px;
    border: 1px solid #ccc;
    margin-bottom: 10px;
}

#sugarlite-camera-select,
#sugarlite-skin-select,
#sugarlite-model-select {
    margin: 5px;
    padding: 6px 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 14px;
}

.gluco-button {
    background-color: #007acc;
    color: white;
    border: none;
    padding: 10px 15px;
    margin: 5px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
}

.gluco-button:hover {
    background-color: #005fa3;
}

.gluco-button.small {
    padding: 6px 10px;
    font-size: 13px;
}

.gluco-feedback {
    margin: 10px 0;
    font-size: 14px;
    color: #333;
    min-height: 20px;
    text-align: center;
}

.gluco-calibration {
    margin: 15px 0;
    text-align: center;
}

#sugarlite-calibrate-input {
    padding: 6px 10px;
    font-size: 14px;
    width: 120px;
    margin: 5px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.gluco-reset-toggle {
    margin: 10px 0;
    text-align: center;
    font-size: 14px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    margin-right: 6px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0;
    right: 0; bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #007acc;
}

input:checked + .slider:before {
    transform: translateX(20px);
}
