/* CSS für Dinslakener Kobras Jobs Form */
.jobs	{

    box-shadow: 5px 5px 5px #cacaca;
    border: 1px solid #cacaca;
    padding: 10px;
    background-color: white;

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
    padding: 20px;
}

/* Container für die gesamte Seite */
.container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Header Bereich */
.header {
    background: linear-gradient(135deg, #e95221, #d14419);
    color: white;
    padding: 30px;
    text-align: center;
}

.header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Content Bereich */
.content {
    padding: 30px;
}

/* Überschriften */
h3 {
    color: #e95221;
    font-size: 1.4rem;
    margin: 30px 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #e95221;
    position: relative;
}

h3:first-child {
    margin-top: 0;
}

h3:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #333;
}

/* Formulare */
form {
    margin-bottom: 25px;
}

/* Select Dropdowns */
select {
    width: 100%;
    max-width: 500px;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    background-color: white;
    color: #333;
    transition: all 0.3s ease;
    cursor: pointer;
}

select:hover {
    border-color: #e95221;
    box-shadow: 0 2px 8px rgba(233, 82, 33, 0.1);
}

select:focus {
    outline: none;
    border-color: #e95221;
    box-shadow: 0 0 0 3px rgba(233, 82, 33, 0.1);
}

select option {
    padding: 10px;
}

/* Tabelle für Eingabefelder */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

td {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

td:first-child {
    background-color: #f8f8f8;
    font-weight: bold;
    color: #333;
    width: 200px;
    border-right: 1px solid #eee;
}

tr:last-child td {
    border-bottom: none;
}

tr:hover td {
    background-color: #fafafa;
}

/* Input Felder */
input[type="text"] {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: white;
}

input[type="text"]:hover {
    border-color: #bbb;
}

input[type="text"]:focus {
    outline: none;
    border-color: #e95221;
    box-shadow: 0 0 0 3px rgba(233, 82, 33, 0.1);
}

/* Submit Button */
input[type="submit"] {
    background: linear-gradient(135deg, #e95221, #d14419);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(233, 82, 33, 0.2);
    margin-top: 20px;
}

input[type="submit"]:hover {
    background: linear-gradient(135deg, #d14419, #b83616);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 82, 33, 0.3);
}

input[type="submit"]:active {
    transform: translateY(0);
    box-shadow: 0 3px 10px rgba(233, 82, 33, 0.2);
}

/* Hidden Inputs */
input[type="hidden"] {
    display: none;
}

/* Info Bereich */
.info-box {
    background-color: #f8f9fa;
    border-left: 4px solid #e95221;
    padding: 20px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.info-box p {
    margin: 0;
    color: #555;
    line-height: 1.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }
    
    .content {
        padding: 20px;
    }
    
    .header h1 {
        font-size: 2rem;
    }
    
    table {
        font-size: 0.9rem;
    }
    
    td:first-child {
        width: auto;
        display: block;
        border-right: none;
        border-bottom: 1px solid #ddd;
        padding-bottom: 8px;
    }
    
    td:last-child {
        padding-top: 8px;
    }
    
    tr {
        display: block;
        margin-bottom: 15px;
        border: 1px solid #eee;
        border-radius: 8px;
        overflow: hidden;
    }
    
    select {
        max-width: none;
    }
}

/* Loading Animation für Submit */
input[type="submit"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* Fehlermeldungen */
.error {
    color: #dc3545;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
}

/* Erfolgsmeldungen */
.success {
    color: #155724;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
}

/* Zusätzliche Styling für bessere UX */
.form-section {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #fdfdfd;
    border-radius: 8px;
    border: 1px solid #eee;
}

/* Hover-Effekte für bessere Interaktivität */
.form-section:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}


}

/**********************/
/* Kontakt-Formular   */
/**********************/
.contact-form	{
    background-color: white;
    padding: 10px 10px 10px 10px;
    border-radius: 20px;
}

com-contact contact h3	{
    color: red;
}



/****************************/
/* EHV                      */
/****************************/
.-hd-los-game-slider .-hd-los-game-slider-game {
#    background-color: red;
#    background: linear-gradient(135deg, #e95221, #ffffff);
}


.-hd-rd-mobile .-hd-los-game-slider-3.-hd-los-game-slider .-hd-util-slider-inline-image img, .-hd-rd-large-mobile .-hd-los-game-slider-4.-hd-los-game-slider .-hd-util-slider-inline-image img, .-hd-rd-large-mobile .-hd-los-game-slider-5.-hd-los-game-slider .-hd-util-slider-inline-image img
Specificity: (0,4,1)
 {
    max-height: 30px;
}

.-hd-los-game-slider .-hd-util-slider-inline-image img {
    height: auto;
    margin-top: 8px;
    max-height: 36px;
    max-width: 100%;
    width: auto;
    display: inline;
}


/***************************************************/
/* Kalender                                        */
/***************************************************/
div#eb-calendar-page.eb-container	{
	background-color: white;
	padding: 20px;
	border-radius: 22px;
}

div#eb-category-page-default.eb-container	{
	background-color: white;
	padding: 20px;
	border-radius: 22px;
}

div#extcalendar.eb-container.eb-calendar-weekly	{
	background-color: white;
	padding: 20px;
	border-radius: 22px;
}
