/* ======== Global Styles ======== */
body {
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background-color: #f8f9fa; /* gris clair */
    color: #333;
}

/* ======== Links ======== */
a, a:visited {
    color: #1c7c54; /* vert Draftly */
    text-decoration: none;
}
a:hover {
    color: #145c3d;
    text-decoration: underline;
}

/* ======== Buttons ======== */
button, .btn, .primary-button {
    background-color: #1c7c54; /* vert Draftly */
    border: none;
    border-radius: 6px;
    color: white;
    padding: 8px 14px;
    font-weight: 600;
    cursor: pointer;
}
button:hover, .btn:hover, .primary-button:hover {
    background-color: #145c3d; /* vert plus foncé */
}

/* ======== Header ======== */
header {
    background-color: #ffffff;
    border-bottom: 1px solid #ddd;
}
header .site-title {
    color: #1c7c54;
    font-weight: bold;
}

/* ======== Cards / Idea Boxes ======== */
.idea-card, .card {
    background-color: white;
    border: 1px solid #e2e2e2;
    border-radius: 10px;
    padding: 16px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

/* ======== Form Fields ======== */
input[type="text"], input[type="email"], input[type="password"], textarea {
    border-radius: 6px;
    border: 1px solid #ccc;
    padding: 8px;
    width: 100%;
}
input:focus, textarea:focus {
    border-color: #1c7c54;
    outline: none;
    box-shadow: 0 0 0 2px rgba(28, 124, 84, 0.2);
}

/* ======== Footer ======== */
footer {
    background-color: #f1f1f1;
    padding: 20px;
    text-align: center;
    color: #666;
}