@font-face {
    font-family: 'montserrat';
    src: url(/fonts/Montserrat-Medium.ttf);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-family: "montserrat";
    scroll-behavior: smooth;
}

body {
    overflow: hidden;
}

input, textarea, select {
    font-size: 0.875rem;
    line-height: 1.25rem;
    border-radius: 0.375rem;
    border: solid 1px #0058B8;
    padding: 0.375rem 0.75rem;
    color: #030712;
    outline-color: #0058B8;
    outline-width: 2px;
    font-family: inherit;
}

textarea {
    resize: none;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

table {
    width: calc(100% + 3rem);
    border-collapse: collapse;
    margin: 0 -1.5rem;
}

table thead, 
table tfoot {
    background-color: #f7f9f9;
}

table th {
    color: black;
    padding: 0.5rem 0 0.375rem;
}

table td {
    padding: 0;
}

td {
    border-bottom: solid 0px #d9d9d9;
}

td:first-child  { 
    padding-left: 1.5rem;
}

td div { 
    padding: 0.5rem 0 0.25rem;
    border-bottom: solid 1px #d9d9d9;
}

td:last-child  { 
    padding-right: 1.5rem;
    width: 240px;
}

tr:nth-child(even) {
    /*background-color: #f2f2f2;*/
}

td .myButton {
    padding: 4px 10px;
}

td {
    height: 50px;
}

td div {
    padding: 0.5rem 0;
    height: 100%;
    display: flex;
    align-items: center;
    column-gap: 0.5rem;
}

td:last-child div {
    justify-content: flex-end;
}

.myLink {
    background-color: transparent;
    border: none;
    outline: none;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
}

.modal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: 100;
    
    background-color: rgba(0,0,0,0.2);
    
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal.lg .pnl {
    min-width: 60vw;
}

.modal .pnl {
    background-color: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
}

.modal .pnl .body {
    display: flex;
    column-gap: 1.5rem;
    margin: 1rem 0;
    width: 100%;
}

.modal .pnl .body .form {
    flex: 1 1 0%;
}

.modal .pnl .footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    column-gap: 0.5rem;
}

.btn {
    background-color: #0058B8;
    color: white;
    padding: 0.5rem 1rem 0.375rem 1rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    border: solid 1px #0058B8;
    outline: none;
    border-radius: 0.5rem;
    cursor: pointer;
    
    display: flex;
    align-items: center;
    column-gap: 0.5rem;
}

.btn:hover {
    background-color: #50a0f7;
    border-color: #50a0f7;
}

.btn.outline {
    color: #0058B8;
    background-color: white;
    border: solid 1px #0058B8;
}

.btn.outline:hover {
    color: #50a0f7;
    border-color: #50a0f7;
    /*color: white;*/
}


.pagi {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.pagi button {
    background-color: transparent;
    border: none;
    outline: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
}

.pagi .aktif {
    border: solid 1px #0058B8;
}

