/* ======================================
   Styles globaux pour TechLinkCity
====================================== */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f6f9;
    margin: 0;
    padding: 0;
}

header {
    background-color: #004080;
    color: white;
    text-align: center;
    padding: 20px;
}

footer {
    text-align: center;
    padding: 15px;
    background-color: #e6e6e6;
    color: #333;
}

/* Cards pour dashboard client/technicien */
.card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    padding: 20px;
    margin: 15px;
    text-align: center;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

/* Boutons généraux */
button, .btn {
    padding: 10px 15px;
    margin: 5px 0;
    border: none;
    border-radius: 5px;
    background-color: #004080;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

button:hover, .btn:hover {
    background-color: #0066cc;
}

/* Formulaires */
form input, form select {
    width: 90%;
    padding: 8px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #ccc;
}

/* Dashboard container */
.dashboard-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

/* Barre de recherche */
.search-bar {
    width: 80%;
    max-width: 400px;
    margin: 20px auto;
    display: flex;
    gap: 10px;
}

.search-bar input {
    flex: 1;
}