Design beautiful buttons with custom styles, hover effects, and group layouts.
.custom-button {
background-color: #3b82f6;
color: #ffffff;
font-size: 16px;
padding: 12px 24px;
border: none;
border-radius: 8px;
cursor: pointer;
transition: all 0.3s ease;
box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.1);
}
.custom-button:hover {
background-color: #2563eb;
color: #ffffff;
}