.ittm-dashboard-wrapper {
    max-width: 900px;
    margin: 20px auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.ittm-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}

.ittm-badge {
    background: #0d6efd;
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.ittm-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.ittm-select {
    width: 100%;
    padding: 10px;
    margin-top: 8px;
    border: 1px solid #cccccc;
    border-radius: 6px;
    font-size: 15px;
}

.ittm-timer-box {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.ittm-timer-display {
    font-size: 42px;
    font-weight: bold;
    color: #212529;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-family: monospace;
}

.ittm-btn {
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.ittm-btn-start { background: #198754; color: white; }
.ittm-btn-start:hover { background: #157347; }

.ittm-btn-stop { background: #dc3545; color: white; }
.ittm-btn-stop:hover { background: #bb2d3b; }