/*
Theme Name: Mein Recruiting Plugin Styles
Description: Styles für das Recruiting Plugin
Version: 1.0
Author: Dein Name
Author URI: Deine Website
*/

/* Reset für Standard-Elemente */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* Globale Box-Sizing-Definition */
*, *::before, *::after {
    box-sizing: border-box;
}

/* Basis-Styles für das Recruiting Plugin */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f0f0f0;
}

.wrap {
    max-width: 960px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 10px;
    font-weight: bold;
}

p {
    margin-bottom: 15px;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0073e6;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #0059b3;
}

/* Spezifische Stile für die Stellenanzeige */
.stellenanzeige {
    background-color: #ffffff;
    border: 1px solid #e1e1e1;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.stellenanzeige h2 {
    font-size: 24px;
    color: #333333;
    margin-bottom: 15px;
}

.stellenanzeige p {
    font-size: 16px;
    color: #555555;
    margin-bottom: 10px;
}

.stellenanzeige .meta-info {
    font-size: 14px;
    color: #777777;
    margin-bottom: 20px;
}

.stellenanzeige .apply-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #28a745;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.stellenanzeige .apply-button:hover {
    background-color: #218838;
}

/* Beispiel für das Bewerbungsformular */
.application-form {
    background-color: #f9f9f9;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #e1e1e1;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.application-form h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.application-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.application-form input[type="text"],
.application-form input[type="email"],
.application-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

.application-form textarea {
    height: 150px;
}

.application-form .submit-button {
    background-color: #0073e6;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.application-form .submit-button:hover {
    background-color: #005cbf;
}
