.endpoint-section {
    margin-bottom: 2rem;
}

.endpoint-card {
    background: white;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.endpoint-header {
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    border-bottom: 1px solid #eee;
}

.endpoint-header:hover {
    background-color: var(--rossmann-light-gray);
}

.endpoint-content {
    padding: 1rem;
    display: none;
}

.endpoint-content.active {
    display: block;
}

.method {
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.method.get {
    background-color: #61affe;
    color: white;
}

.method.post {
    background-color: #49cc90;
    color: white;
}

.method.put {
    background-color: #fca130;
    color: white;
}

.method.delete {
    background-color: #f93e3e;
    color: white;
}

.endpoint-form {
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.data-section {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.result-container {
    background-color: var(--rossmann-light-gray);
    padding: 1rem;
    border-radius: 4px;
    font-family: monospace;
    white-space: pre-wrap;
    margin-top: 0.5rem;
}

.button-secondary {
    background-color: var(--rossmann-gray);
}

.button-secondary:hover {
    background-color: #444444;
}

.button-primary {
    background-color: var(--rossmann-red);
    font-weight: 600;
}
