body {
    margin: 0;
    font-family: Arial
}

.sidebar {
    width: 200px;
    height: 100vh;
    background: #333;
    position: fixed;
    padding: 20px
}

.sidebar a {
    color: #fff;
    display: block;
    padding: 10px;
    text-decoration: none
}

.main {
    margin-left: 220px;
    padding: 20px
}

.login-box {
    width: 300px;
    margin: 120px auto
}

.sidebar {
    position: relative;
}

.main_Box_inner {
    display: flex;
}

.content {
    width: 80%;
    padding: 20px;
}

.from-box label {
    font-size: 13px;
    color: black;
    display: block;
    margin-bottom: 5px;
}

.from-box {
    padding-bottom: 10px;
    width: 40;
}

.from-box input {
    width: 100%;
    height: 40px;
    border: 1px solid #ddd;
    background: #dddddd5c;
    padding-left: 10px;
}

form {
    width: 400px;
}

form button {
    background: #6f273a;
    color: white;
    width: 120px;
    height: 40px;
    border: none;
    text-align: center;
    margin: 0 auto;
    display: block;
    margin-top: 10px;
}

.myTable {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-family: Arial, sans-serif;
}

.myTable th {
    background-color: #2c3e50;
    color: white;
    padding: 10px;
    text-align: left;
}

.myTable td {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.myTable tr:nth-child(even) {
    background-color: #f2f2f2;
}

.myTable tr:hover {
    background-color: #ddd;
}
.pagination {
    margin-top: 20px;
    text-align: center;
}

.pagination a {
    display: inline-block;
    padding: 8px 14px;
    margin: 0 4px;
    border: 1px solid #333;
    text-decoration: none;
    color: #333;
    font-family: Arial, sans-serif;
    border-radius: 4px;
    transition: 0.3s;
}

.pagination a:hover {
    background-color: #2c3e50;
    color: #fff;
}

.pagination a.active {
    background-color: #2c3e50;
    color: #fff;
    border-color: #2c3e50;
}


/* Popup Background */
.popup {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

/* Popup Box */
.popup-content {
    background: #fff;
    width: 400px;
    padding: 20px;
    margin: 100px auto;
    position: relative;
    border-radius: 5px;
}

.close {
    position: absolute;
    right: 10px;
    top: 5px;
    cursor: pointer;
    font-size: 20px;
}

.popup-content input[type="text"] {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    outline: none;
    transition: 0.3s;
}

.popup-content input[type="text"]:focus {
    border-color: #2c3e50;
    box-shadow: 0 0 5px rgba(44, 62, 80, 0.3);
}

.popup-content button {
    padding: 8px 15px;
    background-color: #2c3e50;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s;
}

.popup-content button:hover {
    background-color: #1a252f;
}

/* Filter Form Container */
form {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 20px;
}

/* Textbox */
form input[type="text"] {
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    width: 200px;
    outline: none;
    transition: 0.3s;
}

form input[type="text"]:focus {
    border-color: #2c3e50;
    box-shadow: 0 0 5px rgba(44, 62, 80, 0.3);
}

/* Dropdown */
form select {
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    outline: none;
    cursor: pointer;
    transition: 0.3s;
}

form select:focus {
    border-color: #2c3e50;
}

/* Button */
form button {
    padding: 8px 15px;
    background-color: #2c3e50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: 0.3s;
}

form button:hover {
    background-color: #1a252f;
}