body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    background-color: #f4f4f4;
    flex-direction: column;
    min-height: 100vh;
}


.newbug {
    background-color: rgb(198, 79, 228);
}

.button_I {
    padding: 8px 16px;
    margin-left: 10px;
    background-color: var(--main_text);
    color: var(--main_txtbtn);
    text-decoration: none;
    border-radius: 5px;
}

.button_I:hover {
    background-color: #0056b3;
}

.main-content {
    padding: 20px;
    flex: 1;
    margin-top: 60px;
}

.menu {
    display: flex;
    margin-bottom: 20px;
}

.bug-list {
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.bug-list h2 {
    margin-top: 0;
}

.table-container {
    overflow-x: auto;
}

.bug-list table {
    width: 100%;
    border-collapse: collapse;
}

.bug-list th,
.bug-list td {
    border: 1px solid #ddd;
    padding: 8px;
}

.bug-list th {
    background-color: #f4f4f4;
}

.bug-list .unsolved {
    background-color: #f44336;
    color: #fff;
}

.bug-list .resolved {
    background-color: #4caf50;
    color: #fff;
}

footer {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    margin: 10px;
}

.footer-column h3 {
    margin-top: 0;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
    padding-top: 60px;
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 800px;
    position: relative;
}

.modal-content iframe {
    width: 100%;
    height: 80vh;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.newbug {
    background-color: rgb(198, 79, 228);
}