/* General Styling */
.seo-calculator {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 30px;
    max-width: 1200px;
    margin: auto;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-family: 'Poppins', sans-serif;
}

.calculator-header {
    text-align: center;
}

.calculator-body{
		display: flex;
		flex-direction: row;
		gap: 15px;
}

@media only screen and (max-width: 768px) {
	.calculator-body {
			display: flex;
			flex-direction: column-reverse;
			gap: 15px;
	}
}

.calculator-header h1 {
    font-size: 24px;
    font-weight: bold;
		line-height: 22px;
}

.calculator-header p {
    font-size: 14px;
    color: #666;
}

.calculator-form {
    width: 100%;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group{
	margin-bottom: 0 !important;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

.form-group select,
.form-group input[type="range"] {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
}

input[type="range"] {
    accent-color: #0a55c5;
    width: 100%;
}

.form-group label span {
    font-weight: bold;
    color: #0a55c5;
    margin-left: 5px;
}

.result-section {
    text-align: center;
    background: #e9f5f2;
    padding: 20px;
    border-radius: 10px;
		width: 100%;
}

.result-section h2 {
    font-size: 20px;
    color: #333;
}

.result-display {
    font-size: 24px;
    font-weight: bold;
    color: #00bfa6;
    margin: 10px 0;
}
#resetButton {
    padding: 12px 25px;
    border: none;
    background-image: linear-gradient(90deg, #03228f 0%, #0e73e4 100%);
    color: #fff;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
    outline: none;
    font-weight: 600;
}

#resetButton:hover {
    background-image: linear-gradient(90deg, #03228f 0%, #0e73e4 100%);
}

.thumb{
	display: none;
}
