﻿/* ----- Primary ----- */
.btn.btn-primary {
    transition: all 0.25s ease-in-out;
    background-color: #0d6efd;
    color: white;
    border: 1px solid #0d6efd;
}

    .btn.btn-primary:hover {
        background-color: white;
        color: #0d6efd;
        border: 1px solid #0d6efd;
    }

/* ----- Secondary ----- */
.btn.btn-secondary {
    transition: all 0.25s ease-in-out;
    background-color: #6c757d;
    color: white;
    border: 1px solid #6c757d;
}

    .btn.btn-secondary:hover {
        background-color: white;
        color: #6c757d;
        border: 1px solid #6c757d;
    }

/* ----- Warning ----- */
.btn.btn-warning {
    transition: all 0.25s ease-in-out;
    background-color: #ffc107;
    color: black;
    border: 1px solid #ffc107;
}

    .btn.btn-warning:hover {
        background-color: white;
        color: #ffc107;
        border: 1px solid #ffc107;
    }

/* ----- Danger ----- */
.btn.btn-danger {
    transition: all 0.25s ease-in-out;
    background-color: #dc3545;
    color: white;
    border: 1px solid #dc3545;
}

    .btn.btn-danger:hover {
        background-color: white;
        color: #dc3545;
        border: 1px solid #dc3545;
    }

.bg-byu-blue {
    background-color: #002E5D;
    color: white;
}

.card-equal-height {
    display: flex;
    flex-direction: column;
    height: 100%; /* Ensures all cards are the same height */
}


/* ----- Custom Styles for AdminModelView ----- */

.d-flex.flex-column input[type="text"] {
    min-width: 150px;
}

.d-flex.flex-column input[type="number"] {
    min-width: 100px;
}


.b-grid-column-filter input[type="text"] {
    min-width: 150px;
}

.b-grid-column-filter input[type="number"] {
    min-width: 100px;
}

.rl-table {
    border-collapse: separate;
    border-spacing: 0;
}

.arrow-nav-style {
    width: 3.25rem;
    height: 3.25rem
}


.navigation-button-ios-style {
    width: .5rem;
    height: .5rem;
}

.card-fixed-height-for-carasouel {
    height: clamp(22rem, 70vh, 28rem);
}

