p, h1, h2, h3, h4, h6, label {
    padding: 0;
    margin: 0 !important;
}
.table-btn {
    cursor: pointer;
    padding: 0.4rem 0.7rem;
    color: #0345bf;
    border: none;
    background: none;
    outline: none;
}
.header-btn {
    width: max-content;
    cursor: pointer;
    color: #ffffff;
    border: none;
    background-color: #0345bf;
    border-radius: 5px;
    padding: 0.2rem 0.5rem;
}
.project-group-list-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-button-container {
    display: flex;
    gap: 0.8rem;
    padding: 0.5rem 0;
    font-size: 0.9rem;
}
.client-report-form-container {
    position: fixed;
    display: none; 
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 98;
}
.form-container {
    background: #fff;
    width: clamp(20%, 500px, 90%);
    max-height: 75%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 99;
    overflow: auto;
}
.form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.2rem 0.7rem;
    height: 7%;
    border-bottom: 1px solid #cccccc;
}
.form-close-btn {
    background: #ff8080;
    color: #fff;
    padding: 0.1rem 0.7rem;
    border-radius: 10px;
    cursor: pointer;
}
.client-report-form-container label {
    font-size: 1rem;
}
.information-container {
    border-bottom: 1px solid #cccccc;
    padding: 0 0 0.5rem;
}
.information-header {
    padding: 0.8rem 0.9rem 0.5rem 0.9rem;
}
.information-header h6 {
    width: max-content;
}
.project-information {
    display: flex;
    flex-direction: column;
}
.multiple-select-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.spinning-icon {
    display: none;
}
.project-list {
    /* max-height: 52%; */
    width: 90%;
    border-radius: 5px;
    padding: 0.4rem;
    border: 1px solid #cccccc;
    overflow: auto;
    max-height: 280px;
}
.project-list p {
    font-size: 0.8rem;
    font-weight: 300;
}
.select-box {
    width: 60%;
    margin: 0rem 0rem 0.7rem 0;
    padding: 0rem 0rem 0rem 0.9rem;
}
.project-select-box {
    width: 90%;
}
.select-box select {
    padding: 0 !important;
    font-size: 0.9rem !important;
}
.information-input {
    display: flex;
    gap: 0.6rem;
    padding: 0rem 0rem 0rem 0.9rem;
}
.information-input input {
    padding: 0.3rem 0.75rem !important;
}
.add-btn-container {
    width: max-content;
    padding: 0.8rem 0.9rem 0.5rem 0.9rem;
}
.add-btn-container button {
    width: 100%;
    cursor: pointer;
    padding: 0.4rem 0.7rem;
    color: #ffffff;
    border: none;
    background-color: #0345bf;
}
.add-btn-container button {
    padding: 0.4rem 3rem;
}
.form-error-notif {
    padding: 0.2rem 0.6rem;
    background: #ffcccc;
    width: max-content;
    margin: 0.8rem 0.9rem 0rem 0.9rem !important;
    color: #ff0000;
    display: none;
    font-size: 0.8rem;
}
@keyframes fadein {
    from { 
        top: 45%;
        opacity: 0; 
    }
    to   { 
        top: 50%;
        opacity: 1; 
    }
}