.btn-primary {
    background-color: #dfa329;
    color: white;
}
.bg-primary {
    background-color: #dfa329;
}
.text-primary {
    color: #dfa329;
}
.btn-secondary {
    background-color: #180d3d;
    color: white;
}
.bg-secondary {
    background-color: #180d3d;
}
.bg-danger {
    background-color: rgb(252 165 165);
}
.bg-danger-primary {
    background-color: red;
}

.bg-success {
    background-color: rgb(134 239 172);
}
.text-secondary {
    color: #180d3d;
}
.btn-secondary2 {
    background-color: #0a9fd1;
    color: white;
}
.bg-secondary2 {
    background-color: #0a9fd1;
}
.bg-message {
    background-color: none;
}

.text-secondary2 {
    color: #0a9fd1;
}

.btn {
    padding: 8px 20px;
    border-radius: 10px;
}

.btn-sm {
    padding: 4px 10px;
    border-radius: 10px;
}

.btn-info {
    background-color: #11a8dd;
    color: white;
}
.btn:hover,
select:hover {
    cursor: pointer;
}
.bg-info {
    padding: 20px 0 !important;
    background-color: #11a8dd;
}
.text-info {
    color: #11a8dd;
}

.project-item-active {
    background-color: #0a96c3;
}
.pagination {
    display: inline-flex;
    border-radius: 0.5rem;
}

.pagination > li {
    margin-right: 0.5rem;
}

.pagination > li > a {
    display: inline-block;
    padding: 0.5rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    text-decoration: none;
    color: #4b5563;
}

.pagination > li > span {
    display: inline-block;
    padding: 0.5rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    color: #4b5563;
}

.pagination > .active > a {
    background-color: #4b5563;
    color: #fff;
}

.pagination > .active > span {
    background-color: #4b5563;
    color: #fff;
}

.pagination > .disabled > span {
    opacity: 0.5;
    cursor: not-allowed;
}

.project-item-active h4,
.project-item-active h5 {
    color: white;
}
.backdrop-blur-sm {
    fill: #fff;
    backdrop-filter: blur(4px);
}
/* truncate */
.truncate-text {
    width: 600px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* End of truncate */

/* upload */
.drop-container {
    margin-top: 30px;
    position: relative;
    display: flex;
    gap: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 200px;
    padding: 20px;
    border-radius: 10px;
    border: 2px dashed #ccc;
    color: #444;
    cursor: pointer;
    transition: 0.2s ease-in-out, border 0.2s ease-in-out;
}

.drop-container:hover {
    background: #eee;
    border-color: #344767;
}

.drop-container:hover .drop-title,
.upload_icon svg {
    color: #344767;
}

.drop-title,
.upload_icon svg {
    color: #868b93;
    font-size: 20px;
    text-align: center;
    transition: color 0.2s ease-in-out;
}

.drop-container.drag-active {
    background: #eee;
    border-color: #111;
}

.drop-container.drag-active .drop-title {
    color: #222;
}

.upload_icon svg {
    width: 50px;
}

.required::after {
    content: "*";
    color: red;
    margin-left: 3px;
    font-weight: bold;
}
/* End of Upload */

/* .error-message {
    margin: 25px;
} */
/* This is our style for the invalid fields */
input.invalid {
    border-color: #900;
    background-color: #fdd;
}

input:focus:invalid {
    outline: none;
}
.text-danger {
    color: #900;
}
.text-success {
    color: green;

}

/* This is the style of our error messages */
.error {
    width: 100%;
    padding: 0;

    font-size: 80%;
    color: white;
    background-color: #900;
    border-radius: 0 0 5px 5px;
    box-sizing: border-box;
}

.error.active {
    padding: 0.3em;
}
#loadingIndicator {
    top: 50%;
    left: 50%;
    /* background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px); */
    transform: translate(-50%, -50%);
    position: absolute;
    font-size: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
#loadingIndicator.hidden {
    display: none;
}

.loader {
    width: fit-content;
    font-size: 30px;
    padding-bottom: 8px;
    animation: l2 2s linear infinite;
}

.z-999 {
    z-index: 999 !important;
}


/* Status of deadline */
.deadline-status.deadline-passed, .deadline-milestone.deadline-passed {
    color: red !important;
}
.deadline-milestone.deadline-passed {
    color: rgb(255, 134, 134) !important;
}