body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.protein-list {
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.form-group label {
    flex: 1;
    font-weight: bold;
    margin-right: 10px;
}

.form-group input[type="text"] {
    width: 80px;
    padding: 8px;
    margin-right: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #f9f9f9;
}

.form-group select {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 180px;
}

.protein-list select {
    width: 270px;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    margin-bottom: 20px;
    background-color: #f8f8f8;
    border-radius: 4px;
}

.header-flex h2 {
    margin: 0;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: slateblue;
    flex: 1;
    text-align: center;
}

.menu-container {
    position: relative;
    display: flex;
    align-items: center;
}

.menu-icon {
    cursor: pointer;
    font-size: 20px;
    color: slateblue;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: none;
    padding: 0;
    margin: 0;
}

.dropdown-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 35px;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    padding: 10px;
    border-radius: 4px;
    z-index: 100;
    min-width: 200px;
    white-space: nowrap;
}

.dropdown-menu a {
    display: block;
    padding: 8px 12px;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #ddd;
}

.dropdown-menu a:hover {
    background-color: #f0f0f0;
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

.patch-details {
    margin-top: 20px;
}

.patch-details-header h2 {
    font-size: 20px;
    color: slateblue;
}

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

.patch-details-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    min-width: 1200px;
}

.patch-details-table th, td {
    border: 1px solid #ccc;
    padding: 10px;
    white-space: nowrap;
    overflow: hidden;
}

.patch-details-table th {
    background-color: #f2f2f2;
    text-align: center;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.pagination a {
    margin: 0 5px;
    padding: 8px 16px;
    text-decoration: none;
    background-color: #f2f2f2;
    border: 1px solid #ccc;
    border-radius: 4px;
    color: #333;
    transition: background-color 0.3s ease;
}

.pagination a:hover {
    background-color: #ddd;
}

.pagination a.active-page {
    background-color: slateblue;
    color: #fff;
    border-color: slateblue;
}

@media (max-width: 800px) {
    .container {
        margin: 20px;
        padding: 15px;
    }

    .form-group {
        flex-direction: column;
        align-items: flex-start;
    }

    .form-group label,
    .form-group input[type="text"],
    .form-group select {
        width: 100%;
        margin-bottom: 10px;
    }

    .patch-details-table, th, td {
        font-size: 14px;
    }

    .buttons {
        flex-direction: column;
        align-items: center;
    }

    .buttons button {
        width: 100%;
        margin-bottom: 10px;
    }
}
