
/* Surf Buttons Styles */
.srf-btn-wrapper {
	margin-bottom: 20px;
}

.srf-btn {
	display: inline-block;
	text-decoration: none;
	padding: 12px 24px;
	border-radius: 4px;
	transition: all .3s ease;
	font-weight: 600;
	text-align: center;
	cursor: pointer;
	margin: 5px;
}

/* Button Sizes */
.srf-btn--small {
	padding: 8px 16px;
	font-size: 14px;
}

.srf-btn--medium {
	padding: 12px 24px;
	font-size: 16px;
}

.srf-btn--large {
	padding: 16px 32px;
	font-size: 18px;
}

/* Button Styles */
.srf-btn--default {
	background-color: #2c3e50;
	color: #fff;
	border: 2px solid #2c3e50;
}

.srf-btn--default:hover {
	background-color: #34495e;
	border-color: #34495e;
}

.srf-btn--outline {
	background-color: transparent;
	color: #2c3e50;
	border: 2px solid #096f5b;
}

.srf-btn--outline:hover {
	background-color: #096f5b;
	color: #fff;
}

.srf-btn--primary {
	background-color: #3498db;
	color: #fff;
	border: 2px solid #3498db;
}

.srf-btn--primary:hover {
	background-color: #2980b9;
	border-color: #2980b9;
}

.srf-btn--success {
	background-color: #2ecc71;
	color: #fff;
	border: 2px solid #2ecc71;
}

.srf-btn--success:hover {
	background-color: #27ae60;
	border-color: #27ae60;
}

/* Modern Styles */
.srf-btn--gradient {
	background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
	color: #fff;
	border: none;
	background-size: 200% auto;
}

.srf-btn--gradient:hover {
	background-position: right center;
	transform: translateY(-2px);
}

.srf-btn--neon {
	background-color: #000;
	color: #fff;
	border: 2px solid #0f0;
	box-shadow: 0 0 10px #0f0;
	text-shadow: 0 0 5px #0f0;
}

.srf-btn--neon:hover {
	box-shadow: 0 0 20px #0f0;
	text-shadow: 0 0 10px #0f0;
}

.srf-btn--shine {
	background: linear-gradient(45deg, #f36, #ff6b6b);
	color: white;
	border: none;
	overflow: hidden;
	position: relative;
}

.srf-btn--shine::before {
	content: "";
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(to bottom right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .13) 77%, rgba(255, 255, 255, .5) 92%, rgba(255, 255, 255, 0) 100%);
	transform: rotate(45deg);
	transition: all .3s ease;
}

.srf-btn--shine:hover::before {
	left: 100%;
}

.srf-btn--border-anime {
	background: transparent;
	color: #3498db;
	border: none;
	position: relative;
	z-index: 1;
}

.srf-btn--border-anime::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 2px solid #3498db;
	transition: all .3s ease;
}

.srf-btn--border-anime:hover::before {
	transform: scale(1.1);
	opacity: 0;
}

.srf-btn--3d {
	background-color: #ff4757;
	color: white;
	border: none;
	box-shadow: 0 6px #cc3a45;
	transform: translateY(-2px);
}

.srf-btn--3d:hover {
	transform: translateY(0);
	box-shadow: 0 4px #cc3a45;
}

.srf-btn--minimal {
	background: none;
	color: #333;
	border: 1px solid #ddd;
}

.srf-btn--minimal:hover {
	border-color: #333;
	color: #000;
}

.srf-btn--retro {
	background: #ffd700;
	color: #000;
	border: 3px solid #000;
	box-shadow: 4px 4px 0 #000;
	transform: translate(-4px, -4px);
}

.srf-btn--retro:hover {
	transform: translate(0, 0);
	box-shadow: 0 0 0 #000;
}

.srf-btn--cyberpunk {
	background: #f0f;
	color: #fff;
	border: 2px solid #0ff;
	text-transform: uppercase;
	clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
	text-shadow: 2px 2px #000;
}

.srf-btn--cyberpunk:hover {
	background: #0ff;
	border-color: #f0f;
}

/* Button Alignment */
.srf-btn-align--center {
	display: block;
	margin: 0 auto;
	text-align: center;
}

.srf-btn-align--left {
	display: block;
	margin-right: auto;
	text-align: left;
}

.srf-btn-align--right {
	display: block;
	margin-left: auto;
	text-align: right;
}

/* Preview Page Styles */
.srf-preview-container {
	background: white;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
}

.srf-preview-container h2 {
	color: #2c3e50;
	border-bottom: 2px solid #eee;
	padding-bottom: 10px;
	margin: 30px 0 20px;
}

.srf-preview-container .srf-btn {
	margin: 10px;
}
