/* Styling för felanmälansformulär */
.felanmalan-form {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
}

.felanmalan-form h3 {
    margin-top: 20px;
    margin-bottom: 15px;
    color: #1a2b4c; /* Elegant mörkblå ton */
    font-size: 1.15rem;
    font-weight: 600;
}

.felanmalan-form hr {
    border: 0;
    height: 1px;
    background: #e2e8f0;
    margin: 25px 0;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.form-group {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #2d3748;
    font-size: 0.95rem;
}

/* Styling för textrutor och fält */
.felanmalan-form input[type="text"],
.felanmalan-form input[type="email"],
.felanmalan-form input[type="tel"],
.felanmalan-form select,
.felanmalan-form textarea {
    width: 100% !important;
    padding: 10px 12px !important;
    border: 1px solid #cbd5e1 !important;
    border-radius: 5px !important;
    font-size: 0.95rem !important;
    background-color: #fff !important;
    box-sizing: border-box;
}

.felanmalan-form input:focus,
.felanmalan-form select:focus,
.felanmalan-form textarea:focus {
    border-color: #3182ce !important; /* Blå fokusfärg */
    outline: none;
    box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.15) !important;
}

.file-help {
    font-size: 0.8rem;
    color: #718096;
    margin-top: 5px;
}

/* Snygga till radioknapparna */
.felanmalan-form .wpcf7-list-item {
    display: block !important;
    margin: 6px 0 !important;
}

/* Skicka-knappen */
.form-submit {
    text-align: center;
    margin-top: 25px;
}

.felanmalan-form input[type="submit"] {
    background-color: #3182ce !important;
    color: #fff !important;
    border: none !important;
    padding: 14px 40px !important;
    font-size: 1.05rem !important;
    font-weight: bold !important;
    border-radius: 5px !important;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.2s ease;
}

.felanmalan-form input[type="submit"]:hover {
    background-color: #2b6cb0 !important;
}