.barrierefreiheit-hinweis {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hinweis-content {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.hinweis-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px 10px 20px;
    border-bottom: 1px solid #eee;
}

.hinweis-header h3 {
    margin: 0;
    color: #333;
    font-size: 18px;
}

.hinweis-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hinweis-close:hover {
    color: #000;
    background-color: #f0f0f0;
    border-radius: 50%;
}

.hinweis-body {
    padding: 20px;
    line-height: 1.5;
    font-size: 16px;
}

.hinweis-body p {
    margin: 0 0 15px 0;
    color: #555;
}

.hinweis-body p:last-child {
    margin-bottom: 0;
}

.hinweis-footer {
    padding: 10px 20px 20px 20px;
    text-align: right;
}

.hinweis-button {
    background-color: #7cb342;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.hinweis-button:hover {
    background-color: #689f38;
}

@media (max-width: 600px) {
    .hinweis-content {
        margin: 20px;
        width: calc(100% - 40px);
    }
    
    .hinweis-header, .hinweis-body, .hinweis-footer {
        padding-left: 15px;
        padding-right: 15px;
    }
}