/* Estils generals */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    color: #333;
    min-height:100vh;
    display:flex;
    flex-direction:column;
}
footer{
    width:100%;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin-top: 20px;
    flex:1;
}

/* Encapçalat */
h1 {
    text-align: center;
    color: #4CAF50;
}

/* Taula d'esdeveniments */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

table a{
    color:#007bFf!important;
}

table th, table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

table th {
    background-color: #455a64;
    color: white;
}

table tr:hover {
    background-color: #f1f1f1;
}

/* Enllaços d'acció */
a {
    color: #4CAF50;
    text-decoration: none;
	cursor:pointer;
}

a:hover {
    text-decoration: underline;
}

/* Formulari */
form {
    margin-top: 20px;
}

form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

form input[type="text"],
form input[type="number"],
form input[type="date"],
form input[type="email"],
form input[type="password"],
form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

a.button, button{
    background-color: #4CAF50;
    color: white;
    padding: 8px 20px;
    border: none;
    border-radius: 4px!important;
    cursor: pointer;
    font-size: 16px;
	margin:12px 0;
}

.eliminar{
    background-color:#f44336!important;
}

form button[type="submit"]:hover {
    background-color: #45a049;
}

/* Missatges d'error i èxit */
.error {
    color: #ff0000;
    background-color: #ffe6e6;
    padding: 10px;
    border: 1px solid #ff0000;
    border-radius: 4px;
    margin-bottom: 15px;
}

.success {
    color: #006600;
    background-color: #e6ffe6;
    padding: 10px;
    border: 1px solid #006600;
    border-radius: 4px;
    margin-bottom: 15px;
}

/* Botó de tornar */
.back-link {
    display: inline-block;
    margin-top: 20px;
    /*color: #4CAF50;*/
}

.back-link:hover {
    text-decoration: underline;
}

/* Responsivitat */
@media (max-width: 600px) {
    .container {
        padding: 10px;
    }

    table th, table td {
        padding: 8px;
    }

    form button[type="submit"] {
        width: 100%;
    }
}

#participant-form {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: white;
	padding: 30px;
	width: 50%;
	max-width: 600px;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
	border-radius: 8px;
	z-index: 1000;
}
.overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 999;
}
@media (max-width: 768px) {
	#participant-form {
		width: 90%;
	}
}
