body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-image: url("img1.jpg");
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    background-repeat:no-repeat;
}

/* Sidebar Styling */
.sidebar {
    height: 100%;
    width: 0; /* 0 width - change this with JavaScript */
    position: fixed; /* Stay in place */
    z-index: 10; /* Stay on top */
    top: 0;
    left: 0;
    background-color: rgba(17, 17, 17, 0.95); /* Black with opacity */
    overflow-x: hidden; /* Disable horizontal scroll */
    transition: 0.5s; /* 0.5 second transition effect to slide in the sidebar */
    padding-top: 60px; /* Place content 60px from the top */
    box-shadow: 2px 0 5px rgba(0,0,0,0.5);
}

/* The navigation menu links */
.sidebar .nav-btn {
    padding: 15px 15px 15px 32px;
    text-decoration: none;
    font-size: 22px;
    color: #818181;
    display: block;
    transition: 0.3s;
    background: transparent;
    border: none;
    text-align: left;
    width: 100%;
    cursor: pointer;
    font-family: Arial, sans-serif;
}

/* When you mouse over the navigation links, change their color */
.sidebar .nav-btn:hover {
    color: #f1f1f1;
    background-color: rgba(255,255,255,0.1);
}

/* Position and style the close button (top right corner) */
.sidebar .closebtn {
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
    background: transparent;
    border: none;
    color: #818181;
    cursor: pointer;
}
.sidebar .closebtn:hover {
    color: #f1f1f1;
}

/* The button used to open the sidebar */
.openbtn {
    font-size: 20px;
    cursor: pointer;
    background-color: rgba(17, 17, 17, 0.8);
    color: white;
    padding: 10px 15px;
    border: none;
    position: fixed;
    top: 15px;
    left: 15px;
    border-radius: 5px;
    z-index: 5;
    transition: 0.3s;
}

.openbtn:hover {
    background-color: #444;
}

/* Style page content to push when sidebar opens */
#main-content {
    transition: margin-left .5s;
    padding: 20px;
    padding-top: 60px; /* avoid openbtn overlapping */
}

h2 {
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

form {
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 10px;
    max-width: 400px;
    margin: auto;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}
form input, form button {
    width: 95%;
    padding: 10px;
    margin: 8px auto;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 16px;
}
form select {
    width: 95%;
    padding: 10px;
    margin: 8px auto;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 16px;
}
#saves {
    background-color: rgb(68, 238, 52);
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    color: white;
    border: none;
}
#saves:hover {
    background-color: rgb(50, 200, 40);
}

/* Review section Table styling */
#copy {
    width: 90%;
    max-width: 1000px;
    border-collapse: collapse;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    margin-top: 20px;
}
#copy tr:nth-child(even) {
    background-color: rgba(240, 240, 240, 0.9);
}
#copy th {
    padding: 15px;
    background-color: #333;
    color: white;
    font-size: 18px;
}
#copy td {
    padding: 12px;
    text-align: center;
    border-bottom: 1px solid #ddd;
    font-size: 16px;
}
#copy button {
    background-color: #ff4d4d;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: 0.3s;
}
#copy button:hover {
    background-color: #cc0000;
}