.lrb-buttons-container {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin: 20px 0;
}

.lrb-button {
    width: 100%;
    max-width: 150px;
    text-align: center;
    margin-bottom: 10px;
    justify-content: space-between;
    align-items: center;
    padding: 5px 8px 4px 8px;
    background-color: #007BFF;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 12px;
    transition: background-color 0.3s ease;
	font-family:inherit;
	font-weight: 600;
	filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.2));

}
a#lrb-button1 {
    background-color: #045CB4;
}
a#lrb-button1:hover {
    background-color: #2B72B9;
	color: white;
}
a#lrb-button2 {
    background-color: #FC590D;
}
a#lrb-button2:hover {
    background-color: #FE702E;
	color: white;
}
a#lrb-button3 {
    background-color: #36BA69;
}
a#lrb-button3:hover {
    background-color: #4EBC78;
	color: white;
}

.lrb-button-text {
    margin-right: 10px;
}

.lrb-button-icon {
    width: 14px;
    height: 14px;
}

.lrb-button.disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

.lrb-next-rotation {
    text-align: center;
    font-size: 14px;
    color: #666;
}

@media (max-width: 768px) {
    .lrb-buttons-container {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin: 20px 0;
    }
    .lrb-button {
        width: 100%;
        max-width: 300px;
        text-align: center;
        margin-bottom: 10px;
        justify-content: space-between;
    }
    .lrb-button-icon {
        width: 14px;
        height: 14px;
    }
}