
/* User creation shortcode 
.kc-user-management-form {
    max-width: 600px;
    margin: 2em auto;
    padding: 20px;
}
.kc-form-row {
    margin-bottom: 1em;
}
.kc-form-row label {
    display: block;
    margin-bottom: 0.5em;
    font-weight: bold;
}
.kc-form-row input,
.kc-form-row select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}
.kc-submit-button {
    background-color: #0073aa;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.kc-submit-button:hover {
    background-color: #005177;
}
.kc-message {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
}
.kc-message.success {
    background-color: #dff0d8;
    border: 1px solid #d6e9c6;
    color: #3c763d;
}

/* Bewerbungen Bubble */

li.repeater-item.has-link {
    position: relative;
}

li.repeater-item.has-link > a[title="bewerbungen"] > span::after {
    content: attr(data-count);
    position: absolute;
    top: -4px;
    right: -4px;
    background: #ff4444;
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 14px;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Stellenkategorien SCs */
/* Grid Layout 
.acf-grid-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.acf-grid-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.acf-grid-title {
    margin: 0;
    font-size: 1.8rem;
    color: #333;
}

.acf-grid {
    display: grid;
    grid-template-columns: repeat(var(--columns, 3), 1fr);
    gap: 2rem;
}

@media (max-width: 992px) {
    .acf-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .acf-grid {
        grid-template-columns: 1fr;
    }
}

.acf-grid-item {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
}

.acf-grid-item:hover {
    transform: translateY(-4px);
}

.acf-grid-item-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.acf-grid-item-image {
    height: 200px;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
}

.acf-grid-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.acf-grid-item-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.acf-grid-item-content h3 {
    margin: 0 0 1rem 0;
    font-size: 1.4rem;
    color: #333;
}

.acf-grid-item-content p {
    margin: 0 0 1.5rem 0;
    color: #666;
    flex-grow: 1;
}

.acf-grid-item-actions {
    margin-top: auto;
    display: flex;
    gap: 1rem;
}

/* Form Layout 
.acf-form-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.acf-form-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.acf-form-header h2 {
    margin: 0;
    font-size: 1.8rem;
    color: #333;
}

.acf-form-fields {
    display: grid;
    gap: 1.5rem;
}

.acf-form-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.acf-form-field label {
    font-weight: 500;
    color: #333;
}

.acf-form-field .required {
    color: #dc3545;
    margin-left: 0.25rem;
}

.acf-input {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.acf-input:focus {
    outline: none;
    border-color: #4a90e2;
    box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.2);
}

.acf-input-file {
    padding: 0.5rem;
    border: 2px dashed #ddd;
    background: #f8f9fa;
}

.acf-current-image,
.acf-current-gallery {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.acf-current-image img,
.gallery-thumbnail {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 4px;
}

.acf-form-actions {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

/* Buttons 
.acf-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.acf-btn-primary {
    background: #4a90e2;
    color: #fff;
    border: none;
}

.acf-btn-primary:hover {
    background: #357abd;
    color: #fff;
}

.acf-btn-secondary {
    background: #fff;
    color: #4a90e2;
    border: 1px solid #4a90e2;
}

.acf-btn-secondary:hover {
    background: #f8f9fa;
    color: #357abd;
    border-color: #357abd;
}

/* Messages 
.acf-message {
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 4px;
    font-weight: 500;
}

.acf-message-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.acf-message-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive Adjustments 
@media (max-width: 768px) {
    .acf-form-container {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .acf-grid-container {
        padding: 1rem;
    }
    
    .acf-form-actions {
        flex-direction: column;
    }
    
    .acf-btn {
        width: 100%;
    }
    
    .acf-grid-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

*/
