.teacher-welcome {
    color: #4CAF50;
    font-weight: bold;
    margin: 10px 0;
}

.teacher-welcome i {
    margin-right: 5px;
}

.user-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 15px 0;
    width: 100%;
}

.action-btn.full-width {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 0;
    border-radius: 4px;
    background-color: var(--color_12);
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.action-btn.full-width:hover {
    background-color: #e0e0e0;
}

.action-row {
    display: flex;
    gap: 10px;
    width: 100%;
}

.action-btn.half-width {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 0;
    border-radius: 4px;
    background-color: #f0f0f0;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.action-btn.half-width:hover {
    background-color: #e0e0e0;
}

.action-btn i {
    margin-right: 5px;
}