.cc-calculator {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    border: 1px solid #e6e6e6;
    padding: 30px;
    background: #fff;
}

/* Panels */
.cc-left, .cc-right {
    flex: 1;
}

/* Headings */
.cc-calculator h4 {
    margin:0 0 20px;
    font-size: 18px;
    font-weight: 600;
    border-bottom: 1px solid #000;
    padding-bottom: 8px;
	color : #000000;
}

/* Inputs */
.cc-calculator input,
.cc-calculator select {
    width: 100%;
    padding: 12px;
    border: 1px solid #e6e6e6;
    border-radius: 2px;
    font-size: 16px;
    margin-bottom: 20px;
    background: #fff;
}

/* Buttons */
.cc-buttons {
    margin-top: 10px;
    display: flex;
    gap: 20px;
}
.cc-buttons button {
    background: #000;
    color: #fff;
    border: none;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s ease;
}
.cc-buttons button:hover, .cc-buttons button:focus {
    background: #333;
}

/* Result fields */
.cc-result-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 40px;
    margin-bottom: 20px;
}
.cc-result-box label {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 6px;
    display: block;
	color:404040;
}
.cc-result-box input {
    background: #f1f3f6;
    border: none;
    border-radius: 2px;
    padding: 12px;
    font-size: 16px;
    color: #444;
    width: 100%;
	box-shadow:none;
}

/* Note text */
.cc-note {
    font-size: 12px;
    margin-top: 10px;
    color: #666;
    line-height: 1.5;
}
