.custom-button {
    display: inline-block;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-align: center;
}

/* Button Sizes */
.custom-button.small {
    padding: 8px 16px;
    font-size: 14px;
}

.custom-button.medium {
    padding: 12px 24px;
    font-size: 16px;
}

.custom-button.large {
    padding: 16px 32px;
    font-size: 18px;
}

/* Button Width */
.custom-button.full {
    display: block;
    width: 100%;
}

/* Hover Effect */
.custom-button:hover {
    transform: translateY(-2px);
} 