/* Container */
.kuhl-offering, 
.kuhl-calendar {
    max-width: 600px;
    margin: 0px auto;
    padding: 4px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Headings */
.kuhl-offering h2,
.kuhl-calendar h3 {
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 24px;
}

/* Form fields */
.kuhl-offering select,
.kuhl-calendar input[type="datetime-local"],
.kuhl-calendar input[type="text"],
.kuhl-calendar input[type="email"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 16px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Buttons */
.kuhl-offering button,
.kuhl-calendar button {
    background: #2271b1; /* WP admin blue */
    color: #fff;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
}

.kuhl-offering button:hover,
.kuhl-calendar button:hover {
    background: #135e96;
}

/* Messages */
.kuhl-success {
    padding: 12px;
    margin-bottom: 16px;
    background: #e7f7ec;
    color: #1d7a3a;
    border-left: 4px solid #1d7a3a;
}

.kuhl-error {
    padding: 12px;
    margin-bottom: 16px;
    background: #fdeaea;
    color: #a12626;
    border-left: 4px solid #a12626;
}
.kuhl-dashboard {
    max-width: 900px;
    margin: 40px auto;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.kuhl-section {
    margin-bottom: 0px;
}

.kuhl-section h3 {
    margin-bottom: 12px;
    border-bottom: 2px solid #eee;
    padding-bottom: 6px;
}

.kuhl-table {
    width: 100%;
    border-collapse: collapse;
}

.kuhl-table th,
.kuhl-table td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: left;
}

.kuhl-table th {
    background: #f7f7f7;
}

.kuhl-table tr:nth-child(even) {
    background: #fafafa;
}

.kuhl-offerings-list {
    max-width: 1000px;
    margin: 0px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 10px;
}

.kuhl-offering-card {
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 24px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    position:relative;
}

.kuhl-offering-card h3 {
    margin-top: 10px;
    margin-bottom: 12px;
    font-size: 20px;
}

.kuhl-offering-card p {
    flex-grow: 1;
    margin-bottom: 12px;
    color: #444;
    line-height: 1.2;
}

.kuhl-offering-card a {
    align-self: flex-start;
    background: #2271b1;
    color: #fff;
    padding: 8px 14px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
}

.kuhl-offering-card a:hover {
    background: #135e96;
}

/* Type badge */
.kuhl-offering-type {
    position: absolute;
    top: 14px;
    right: 14px;
    background: #f2f2f2;
    color: #555;
    font-size: 11px;
    padding: 5px 10px;
    border-radius: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.kuhl-offerings-wrapper {
    max-width: 1000px;
    margin:0px auto;
}

.kuhl-offerings-wrapper h2 {
    margin-bottom: 0px;
    font-size: 28px;
}
