﻿/* Common layout styles for management pages */
.page-layout {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.menu-section {
    width: 100%;
    margin-bottom: 0.5rem;
}
.row-spacer {
    height: 1.5rem;
    width: 100%;
}
.content-section {
    width: 100%;
    padding: 0 1rem;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.15rem;
    color: #0c2340;
}

.page-title {
    font-size: 1.5rem;
    font-weight: 500;
}

.info-box-container {
    width: 36px;
    height: 36px;
}

/* Card styling */
.card-container {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    transition: transform 0.2s;
    margin-bottom: 1.5rem;
    height: 100%;
}

.card-header-custom {
    display: flex;
    align-items: center;
}

    .card-header-custom i {
        margin-right: 0.5rem;
    }

/* Controls container */
.controls-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

    .controls-container > * {
        margin-right: 20px;
    }

    .controls-container > :last-child {
        margin-right: 0;
    }

/* Form elements */
.form-group {
    margin-bottom: 1rem;
}

    .form-group label {
        display: block;
        margin-bottom: 0.3rem;
        font-weight: 500;
    }

.form-actions {
    margin-top: 1rem;
}

/* Checkbox container */
.checkbox-container {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

/* Beta tag styling */
.beta-tag {
    margin-left: 0.5rem;
    font-size: 0.7rem;
    font-weight: normal;
    background-color: rgba(23, 162, 184, 0.15);
    color: rgba(23, 162, 184, 0.8);
    border: 1px solid rgba(23, 162, 184, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .content-section {
        padding: 0 0.5rem;
    }
}
