:root {
    --primary-green: #059669;
    --green-hover: #10B981;
    --green-light: #6EE7B7;
    --bg-dark: #0f0f0f;
    --bg-card: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #c1c1c1;
    --border-dark: #2e2e2e;
    --border-green: rgba(5, 150, 105, 0.25);
    --glow-green: 0 0 8px rgba(5, 150, 105, 0.5);
}

body{
    background-color: var(--bg-dark);
}
.btn-1{
    background: var(--primary-green);
    padding: 10px 20px;
    border-radius: 5px;
    border: 0;
    white-space: nowrap;
    color: #fff !important;
    transition: background 0.2s ease, box-shadow 0.2s ease;
}
.btn-1:hover{
    background: var(--green-hover);
    color: #fff;
    box-shadow: var(--glow-green);
}
.ngx-pagination .current{
    background: var(--primary-green) !important;
    background: linear-gradient(298deg, var(--green-light) 0%, var(--primary-green) 50%, var(--green-light) 100%) !important;
}
.eye-icon{
    position: absolute;
    right: 10px;
    top: 8px;
}
.btn-sm{
    padding: 5px 10px;
    font-size: 13px;
}
.card-box{
    background-color: var(--bg-dark);
    padding: 10px;
    border-radius: 5px;
    border: 1px solid var(--border-green);
}
th{
    background-color: var(--primary-green) !important;
    border-bottom: 0;
    color: #fff !important;
    font-weight: 500;
    font-size: 15px;
}
.table-striped>tbody>tr:nth-of-type(odd)>*,
td{
    border-bottom: 0;
    color: #c1c1c1 !important;
    font-size: 14px;
}
.table td:first-child{
    white-space: nowrap;
}

::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: transparent;
	border-radius: 10px;
}

::-webkit-scrollbar
{
	width: 10px;
	background-color: transparent;
}

::-webkit-scrollbar-thumb
{
	border-radius: 10px;
	background-image: -webkit-gradient(linear,
									   left bottom,
									   left top,
									   color-stop(0.44, var(--primary-green)),
									   color-stop(0.72, #047857),
									   color-stop(0.86, #065f46));
}
.window-screen-height{
    min-height: calc(100vh - 125px);
    
}
.form-control:focus,
input:focus{
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.25);
    border-color: var(--primary-green);
}
.mat-mdc-text-field-wrapper{
    border-radius: 5px !important;
}
.switch-modal-btn{
    display: flex;
    height: 56px !important;
    align-items: center;
}
.opportunities-select{
    height: 45PX;
}
.mat-mdc-form-field:not(.mat-form-field-no-animations) .mdc-line-ripple::after,
.mdc-text-field--filled:not(.mdc-text-field--disabled) .mdc-line-ripple::before{
    border-bottom: 0 !important;
}
.ngx-pagination a, 
.ngx-pagination button{
    color: #c1c1c1 !important;
}

@media only screen and (max-width: 991px) and (min-width: 320px){
    .nav-buttons{
        display: table-caption !important;
    }
    .nav-buttons button{
        margin-right: 0 !important;
        margin-bottom: 15px;
    }
    .logout-dd{
        /* position: unset !important; */
    }
}

@media only screen and (max-width: 767px) and (min-width: 320px){
    .header-links button{
        margin-top: 15px;
    }
    .login-div{
        background-color: rgba(20, 20, 20, 0.74) !important;
        padding: 20px;
        border-radius: 5px;
    }
}

@media only screen and (max-width: 991px) and (min-width: 320px){
    .window-screen-height {
        min-height: calc(100vh - 100px);
    }
}

@media only screen and (max-width: 576px) and (min-width: 320px){
    .window-screen-height {
        min-height: calc(100vh - 80px);
    }
    
    .btn-1 {
        white-space: normal;
        padding: 8px 16px;
        font-size: 13px;
    }
    
    h2 {
        font-size: 1.2rem;
    }
    
    h5 {
        font-size: 1rem;
    }
}
