body {
    font-family: Arial, sans-serif;
    background-color: white;
    color: black;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

h2 {
    text-align: center;
    color: #28a745;
    margin-top: 40px;
}

/* Navbar styles */
.navbar {
    background-color: #6EE8E0;
    overflow: hidden;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 23px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar-text {
    font-size: 28px;
    font-weight: bold;
    color: black;
}

/* Scrollable container */
.scrollable-container {
    overflow-y: auto;
    border: 0px solid #ddd;
    border-radius: 5px;
    margin: 20px 1px 25px 1px;
}

/* Service container */
.service-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 0px;
    margin-top: 50px;
    margin-bottom: 55px;
}

/* Service card */
.service-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 181px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Service image */
.service-image {
    width: 100%;
    padding-top: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    margin-bottom: 15px;
    position: relative;
}

/* Service name */
.service-name {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin: 10px 0;
}

/* Apply button */
.apply-button {
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 15px 45px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
}

.apply-button:hover {
    background-color: #218838;
}

/* No records message */
.no-records {
    text-align: center;
    color: #777;
    width: 100%;
}

/* Container for forms */
.container {
    background-color: rgb(185, 189, 192);
    border: 2px solid white;
    border-radius: 20px;
    width: 400px;
    padding: 20px;
    margin: 1px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: white;
}

/* Image preview */
.container .image-preview {
    width: 100px;
    height: 100px;
    background-color: white;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
}

/* Details section */
.details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Table styling */
table {
    width: 100%;
}

td:first-child {
    width: 100px;
    padding-right: 20px;
}

td:last-child {
    width: calc(100% - 120px);
}

/* Form group styling */
.details .form-group {
    margin-bottom: 10px;
}

/* Input and submit button styling */
.container input[type="text"],
.container input[type="file"],
.container input[type="submit"] {
    border-radius: 10px;
    padding: 5px 10px;
}

.container input[type="submit"] {
    background-color: #ffffff;
    color: black;
    border: none;
    cursor: pointer;
}

@media (max-width: 600px) {


/* Service card */
.service-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 267px;
    height: 362px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

}