
.table-header {
    background: linear-gradient(
        135deg,
        var(--primary) 0%,
        var(--secondary) 100%
    );
    color: white;
    font-weight: 800;
}

.table-roow:hover {
    background-color: var(--accent-light);
}

/* Form Input Styles */
.collab-input:focus {
    border-color: #146c94 !important;
    box-shadow: 0 0 0 4px rgba(20, 108, 148, 0.2) !important;
}

.collab-input:disabled {
    background-color: #f3f4f6;
    cursor: not-allowed;
    opacity: 0.6;
}

/* Select Arrow */
select.collab-input {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3E%3C/svg%3E");
    background-position: left 0.75rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-left: 2.5rem;
}

.contract-card {
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.contract-card:hover {
    border-color: #19a7ce;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -3px rgba(20, 108, 148, 0.2);
}
/*.action-buttonss {*/
/*    display: flex;*/
/*    gap: 18px;*/
/*    margin-top: 15px;*/
/*    justify-content: center;*/
/*    !*flex-wrap: wrap;*!*/
/*}*/


.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 12px rgba(20, 108, 148, 0.3);
    border: none;
    z-index: 100;
}

.back-to-top.visible {
    opacity: 1;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(20, 108, 148, 0.4);
}
.contracts-buttonn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 10px;
    border-radius: 16px;
    background-color: white;
    color: #146c94;
    font-weight: 700;
    font-size: 1.125rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid transparent;
}
.contracts-buttonn:hover {
    background-color: #146c94;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -3px rgba(20, 108, 148, 0.4);
    border-color: white;
}

.hero-gradientt {
    background: linear-gradient(135deg, #146c94 0%, #19a7ce 100%);
}



