/* SkaRe Main Styles */

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

:root {
    --brand-text-offset: -15px;  /* Negative = up, Positive = down */
}

.navbar-brand-text {
    margin-top: var(--brand-text-offset);
}

.navbar-logo {
    height: 40px;
    margin-right: 10px;
}

/* Validation error styling */
.form-control.is-invalid,
.form-select.is-invalid {
    border-color: #dc3545;
    border-width: 2px;
}

.form-control.is-invalid:focus,
.form-select.is-invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

/* List All Participants Table Styles */
.sortable {
    cursor: pointer;
}

.sortable:hover {
    background-color: #495057;
    color: #fff;
}

#participantsTable td {
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#participantsTable td:hover {
    white-space: normal;
    overflow: visible;
}

.hidden-column {
    display: none !important;
}

/* Home Page Logo */
.home-logo {
    max-width: 300px;
    margin-bottom: 20px;
}

