.dnd-teacher-status {
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.status-section, .room-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.status-label, .room-label {
    font-weight: 600;
    font-size: 16px;
}

.status-toggle-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.status-text {
    font-size: 14px;
}

.status-text.offline {
    color: #ccc;
}

.status-text.online {
    color: #28a745;
}

.status-toggle-label {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.status-toggle-label input {
    opacity: 0;
    width: 0;
    height: 0;
}

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

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

input:checked + .status-toggle-slider {
    background-color: #28a745;
}

input:checked + .status-toggle-slider:before {
    transform: translateX(30px);
}

.room-link {
    color: #007cba;
    text-decoration: underline;
    font-size: 16px;
}

.discord-connect-message {
    margin-top: 10px;
    padding: 12px 15px;
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    color: #856404;
    font-size: 14px;
    line-height: 1.5;
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.discord-connect-message a {
    color: #007cba;
    text-decoration: underline;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .dnd-teacher-status {
        padding: 15px;
        gap: 15px;
    }
}