/* Container styles */
.container {
    max-width: 600px;
}

/* Labels */
.form-label {
    font-size: 1.5rem;
    color: #333;
    font-weight: bold;
}

/* Grouped controls */
.mb-3 {
    border: 2px solid #aaa;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    background-color: #f9f9f9;
}

/* Dropdown menu styles */
.form-select {
    font-size: 1.1rem;
    padding: 12px;
    border: 2px solid #aaa;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    border-radius: 5px;
}

.form-select:hover {
    border-color: #007bff;
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.3);
}

/* Card styles */
.card {
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    text-align: center;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    margin: 10px;
    border: 3px solid orange;
}

.card-square {
    flex-grow: 1;
    min-width: 350px;
    max-width: 500px;
    height: auto;
}

.card ul {
    list-style-type: disc;
    padding-left: 20px;
    text-align: left;
    margin-bottom: 10px;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 15px 25px rgba(0, 0, 0, 0.2);
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.card-text {
    font-size: 1rem;
    margin-bottom: 10px;
}

.card h6 {
    margin-top: 15px;
    font-weight: bold;
}

/* Flexbox grid for cards */
#cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* Toast positioning */
.toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1055;
}
