/* Discipline Industrial Buttons (Outline Style) */
.discipline-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.glass-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 18px 24px;
    background: transparent;
    border: 1px solid var(--color-text-main);
    /* White border default */
    border-radius: var(--radius-sm);
    /* Minimal radius */
    color: var(--color-text-main);
    transition: all 0.1s ease-out;
    /* Snap transition */
    cursor: pointer;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.glass-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    /* Grayish fill on hover */
    border-color: var(--color-primary);
    color: var(--color-text-main);
    /* Keep white/text color, border shows accent */
    transform: none;
    box-shadow: none;
}

.glass-btn:active {
    background: rgba(255, 255, 255, 0.25);
}

.btn-start {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.btn-plus {
    font-size: 20px;
    font-weight: 700;
    opacity: 1;
    color: inherit;
    /* Inherits hover color */
}

.btn-text {
    font-size: 17px;
    font-weight: 500;
    font-family: var(--font-body);
    color: inherit;
    /* Inherits hover color */
    letter-spacing: -0.01em;
}

.btn-icon {
    opacity: 1;
    transition: opacity 0.3s, transform 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    color: inherit;
    /* Inherits hover color */
}

.glass-btn:hover .btn-icon {
    opacity: 1;
    transform: none;
    color: var(--color-primary);
}

/* Light Mode Overrides for Buttons */
body.light-theme .glass-btn {
    border-color: #000000;
    color: #000000;
}

body.light-theme .glass-btn:hover {
    background: rgba(0, 0, 0, 0.08);
    /* Grayish fill light mode */
    border-color: var(--color-primary);
    color: var(--color-text-dark);
}