/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    display: flex;
}

/* Page Header */
.page-header {
    font-size: 2rem;
    font-weight: bold;
    color: #0c0c0c;
    background-color: #C1E1C1;
    padding: 20px 0;
    margin-bottom: 20px;
    border-radius: 5px;
}

/* Page Body */
.page-body {
    padding: 0 0 10px 50px;
}

/* Tables */
table {
    width: 100%;
    table-layout: auto;
}

table td {
    word-wrap: break-word;
    overflow: hidden;
    text-overflow: ellipsis;
}

.modal-header {
    position: relative;
}

.modal-header .close {
    position: absolute;
    right: 15px; /* Adjust this value as needed */
    top: 50%;
    transform: translateY(-50%);
}


.input-icon {
    position: relative;
}

.input-icon i {
    position: absolute;
    left: 7px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
}

.input-icon input {
    padding-left: 2.5rem; /* space for the icon */
}