body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}



/* Add styles for the "Add New Tender" button */
.add-tender-button {
    display: inline-block;
    background-color: #4CAF50;  /* Green background */
    color: white;               /* White text */
    font-size: 16px;            /* Font size */
    padding: 12px 24px;         /* Padding for a larger button */
    margin-bottom: 20px;        /* Add some space below the button */
    text-align: center;         /* Center text */
    text-decoration: none;      /* Remove underline */
    border-radius: 5px;         /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);  /* Subtle shadow effect */
    transition: background-color 0.3s ease, transform 0.2s ease;
}

/* Change background color on hover */
.add-tender-button:hover {
    background-color: #45a049;  /* Slightly darker green on hover */
    transform: translateY(-2px); /* Slight lift effect */
}

/* Add a focus effect (for accessibility) */
.add-tender-button:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.5); /* Green focus outline */
}


.sidebar {
    background: navy;
    color: yellow;
    padding: 20px;
    width: 200px;
    height: 100vh;
    position: fixed;
}

h2{
    text-align:center;
}

form {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
}




form input, form textarea, form button {
    display: block;
    width: 100%;
    margin: 10px 0;
    padding: 10px;
    font-size: 16px;
}

form input, form textarea {
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    background: navy;
    color: yellow;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

form button:hover {
    background: yellow;
    color: navy;
}


.sidebar h3 {
    color: yellow;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar ul li {
    margin: 15px 0;
}

.sidebar ul li a {
    color: white;
    text-decoration: none;
}

.main-content {
    margin-left: 220px;
    padding: 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
}

table th, table td {
    border: 1px solid #ddd;
    padding: 10px;
}

table th {
    background: navy;
    color: yellow;
}

.btn {
    padding: 5px 10px;
    text-decoration: none;
    border-radius: 5px;
    color: white;
    font-size: 12px;
}

.btn-edit {
    background: orange;
}

.btn-delete {
    background: red;
}
