/*
    Auteur: Philippe Galley
    Date: 02.03.2025
    Description: Fichier de style pour la page des langages de programmation
*/

/* Réinitialisation et base */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: Arial, sans-serif;
	font-size: 16px;
	color: #333;
	background-color: #f4f4f4;
	line-height: 1.6;
	padding: 20px;
}

/* Titre principal */
h1 {
	margin-bottom: 20px;
	padding: 15px;
	background-color: #2c3e50;
	color: white;
	text-align: center;
	border-radius: 5px;
	font-size: 24px;
}

/* Boutons */
button {
	margin: 10px 0;
	padding: 12px 20px;
	background-color: #2c3e50;
	color: white;
	border: none;
	cursor: pointer;
	font-weight: bold;
	border-radius: 5px;
	transition: background-color 0.3s ease;
}

button:hover {
	background-color: #1a252f;
}

/* Table */
#garages {
	width: 100%;
	border-collapse: collapse;
	margin-top: 20px;
	background: white;
	border-radius: 5px;
	overflow: hidden;
}

#garages th,
#garages td {
	padding: 12px;
	border: 1px solid #ddd;
	text-align: left;
}

#garages th {
	background-color: #2c3e50;
	color: white;
	font-weight: bold;
}

#garages tr:nth-child(even) {
	background-color: #f9f9f9;
}
