/* style.css */

.custom-buttons {
    display: flex;
    flex-direction: column;
}

.custom-buttons a {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    margin-bottom: 20px; /* Add some space between buttons */

    /* Common styling for both buttons */
    transition: background-color 0.3s ease;
}

/* Styling for "For Me" button */
.for-me-button {
    background-color: #d80000;
	color: white;
	border: 2px solid #d80000;
	border-radius: 5px !important;
	text-align: center;
	padding
}

.for-me-button:hover {
    background-color: #e80000;
	border: 2px solid #e80000;
	color: white;
}

/* Styling for "For My Business" button */
.for-my-business-button {
    background-color: transparent;
	color: #d80000 !important;
	border: 2px solid #d80000;
	border-radius: 5px !important;
	text-align: center;
	
}

.for-my-business-button:hover {
    background-color: #e80000;
	color: white !important;
	border: 2px solid #e80000;
	
}