/* ====== Globalt ====== */
body {
    font-family: sans-serif;
    background: #333;
    color: #fff;
    text-align: center;
    padding: 0;
    margin: 0;
}

/* ====== Rubriker ====== */
h1 {
    color: #f3114e;
    text-shadow: 0 4px 0px #000;
    margin-bottom: 1rem;
}

/* ====== Form-container ====== */
.idelada-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    padding-top: 0px;
}

/* ====== Formulär ====== */
.idelada-form {
    background: #333;
    color: white;
    padding: 2rem;
    width: 400px;
    border-radius: 8px;
    text-align: center;
}

.idelada-form input,
.idelada-form textarea,
.idelada-form button {
    display: block;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 1rem;
    font-size: 1rem;
    border-radius: 4px;
    padding: 10px;
}

.idelada-form input,
.idelada-form textarea {
    background: #2a2a2a;
    color: white;
    border: 1px solid #555;
}

.idelada-form input::placeholder,
.idelada-form textarea::placeholder { 
    color: #aaa; 
}

.idelada-form textarea {
    resize: vertical;
    min-height: 100px;
}

.idelada-form button {
    background: #f3114e;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
    font-weight: bold;
}

.idelada-form button:hover {
    background: #c20e3d;
}

/* ====== Felmeddelande och bekräftelse ====== */
.idelada-form .error {
    color: #ff5a5a;
    margin-bottom: 1rem;
}

.idelada-form .success {
    color: limegreen;
    margin-bottom: 1rem;
}

/* ====== Länkar i formulär ====== */
.idelada-form a { 
    color: #f3114e; 
    text-decoration: none; 
}

.idelada-form a:hover { 
    text-decoration: underline; 
}
