.classroom-card-component {
    width: 100%;
    max-width: 550px;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 24px 0;
    background-color: white;
    display: flex;
    margin: 16px;
    font-size: 14px;

    .column {
        display: flex;
        flex-direction: column;
        justify-content: center;

        &.edit-column {
            align-items: center;
            width: 15%;
        }

        &.info-column {
            align-items: flex-start;
            width: 75%;
        }

        &.remove-column {
            justify-self: flex-end;
            width: 10%;
        }
    }

    .group-name {
        font-weight: bold;
        font-size: 18px;
        padding-bottom: 4px;
    }

    .num-students {

        padding-bottom: 4px;
    }

    .delete-classroom {
        color: #e74c3c;
    }
}