body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

#workshops {
    padding: 40px;
    background-color: #fff;
    margin: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h2 {
    text-align: center;
    color: #992203;
    font-size: 30px;
    margin-bottom: 30px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

table th, table td {
    padding: 12px;
    text-align: center;
    border: 1px solid #ddd;
}

table th {
    background-color: #f4cb96;
    color: #992203;
}

table td a {
    color: #25d366;
    text-decoration: none;
    font-weight: bold;
}

table td a:hover {
    text-decoration: underline;
}


/* Modal Styles */
.modal {
    display: none; /* Ensure it's hidden on load */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.modal-content {
    background-color: #e7dac9;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    text-decoration-color: black;
    max-width: 600px;
    border-radius: 10px;
}

.close-btn {
    color: #992203;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 25px;
}

.close-btn:hover,
.close-btn:focus {
    color: #d9534f;
    text-decoration: none;
    cursor: pointer;
}

button.info-btn {
    background-color: #25d366;
    color: white;
    border: none;
    padding: 8px 16px;
    cursor: pointer;
    border-radius: 5px;
}

button.info-btn:hover {
    background-color: #128c7e;
}
