/* Modern Typography */

@import url("https://fonts.googleapis.com/css2?family=Public+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,500&display=swap");

body {
    font-family: 'Public Sans', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s, box-shadow 0.3s;
}

.btn:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Forms */
.form-control {
    border-radius: 6px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-control:focus {
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.5);
}

/* Cards */
.card {
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    border-radius: 6px !important; /* Explicitly set the border radius */
}

.card-header {
    background-color: #f8f9fa;
    font-weight: 600;
    border-bottom: 1px solid #ddd;
    border-radius: 6px 6px 0 0 !important;
}

.card-body {
    padding: 1.5rem;
    border-radius: 6px !important; /* Explicitly set the border radius */
}

/* Modals */
.modal-content {
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.modal-header {
    border-bottom: 1px solid #ddd;
    font-weight: 600;
}

.modal-footer {
    border-top: 1px solid #ddd;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.25rem;
}

/* Pagination */
.pagination {
    border-radius: 6px;
    overflow: hidden;
}

.page-item .page-link {
    padding: 0.75rem 1.25rem;
    transition: background-color 0.3s, color 0.3s;
}

h5 {
    border-radius: 6px;
    padding: 0.5rem;
}


/* Alerts */
.alert {
    border-radius: 6px;
    padding: 1rem 1.5rem;
}

