
i {
    font-size: 25px; /* Adjust the size as needed */
}

.btn-shadow i {
    margin-right: 10px; /* Adjust this value to increase or decrease the spacing */
}


.btn-shadow:focus {
    outline: none;
}

.btn-shadow {
    min-width: 100px;
    background-color: transparent;
    border: 1px solid #d2d2d2;
    font-weight: 400;
    color: rgba(22, 22, 64, 1);
    transform: scale(1.04);
    background-color: rgb(255, 255, 255);
    padding: 0.5em;
    padding-left: 1em;
    padding-right: 1em;
    border-radius: 0.3em;

    display: flex;
    align-content: space-between;
    align-items: center; /* Aligns icon and text vertically */
    justify-content: center; /* Aligns icon and text horizontally, if needed */

    transition: color 0.3s ease-in-out, transform 0.2s ease-in-out, box-shadow 0.4s ease-in-out; /* Transition for box-shadow is set to 0.5s */
    text-decoration: none; /* Ensure no underline by default */
}

.btn-shadow:hover {
    transform: scale(1.2);
    color: rgba(72, 72, 199, 1);
    box-shadow: 0px 2px 20px rgba(72, 72, 199, 0.4); /* Shadow properties */
    text-decoration: none; /* Ensure no underline on hover */

}

.logo {
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5em;
}


.nav {
    justify-content: center;
    align-items: center;
}


.title {
    font-size: 50px;
    font-weight: 400;
    margin-left: 1em;
}


.nav-item .nav-link.active {
    background-color: white;
    color: white;
}


.main-color {
    background: #161640;
}


.menu {
    height: 100vh;
}

.content {
    background: #f8f8f8;
    color: white;
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 100vh;
    max-height: 100vh; /* Ensure it doesn't exceed the full viewport height */
    overflow: auto;
    box-sizing: border-box;
}

body {
    background-color: #f8f9fa;
    font-family: Arial, sans-serif;
}


h1 {
    margin-bottom: 30px;
}

.table thead th {
    background-color: #161640;
    color: #fff;
}

.table tbody tr:nth-child(even) {
    background-color: #f2f2f2;
}

.btn {
    margin-right: 5px;
}

.btn-success {
    margin-left: 10px;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.form-group {
    flex: 1;
    margin-right: 10px;
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    font-size: 1.2em;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.form-group button {
    padding: 10px 20px;
    font-size: 1.2em;
    color: #fff;
    background-color: #161640;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.form-group button:hover {
    background-color: #161640;
}

.form-errors {
    color: red;
    font-size: 0.9em;
}

.form-group:last-child {
    margin-right: 0;
}

.form-group-wide {
    flex: 1;
    margin-left: 10px;
}

.form-column {
    display: flex;
    flex-direction: column;
    width: 30%;
}

.section-divider {
    border: 0;
    border-top: 1px solid #ccc;
    margin: 20px 0;
}

.section-label {
    font-size: 1.5em;
    margin: 20px 0;
    text-align: center;
    width: 100%;
}

.text-center {
    text-align: center;
    width: 100%;
}

td {
    cursor: pointer;

}

