/* Styles for Video Production Time Estimator Calculator */
.calcufacil-video_production_time_estimator_calculator {
    background-color: #fcf3f3; /* Light reddish/video color */
    border: 1px solid #f8d7da;
    border-left: 5px solid #dc3545; /* Red */
    border-radius: 0 8px 8px 0;
    padding: 20px 25px;
    font-family: 'Roboto', sans-serif;
    max-width: 800px;
    margin: 25px auto;
    box-shadow: 0 3px 7px rgba(0,0,0,0.07);
}

.calcufacil-video_production_time_estimator_calculator > h3 { /* Default title */
    text-align: center;
    color: #a93226; /* Darker Red */
    margin-bottom: 15px;
    font-size: 1.3em;
}

.calcufacil-video_production_time_estimator_calculator .calculator-content h2 {
    text-align: center;
    color: #c0392b; /* Strong Red */
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.7em;
    font-weight: 600;
}

.calcufacil-video_production_time_estimator_calculator .description {
    text-align: center;
    color: #721c24; /* Darkest Red */
    font-size: 0.95em;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Form Styling */
.calcufacil-video_production_time_estimator_calculator form {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px dashed #f5c6cb; /* Light Red dashed */
}

.calcufacil-video_production_time_estimator_calculator form h3 {
 color: #dc3545; /* Red */
 margin-bottom: 20px;
 font-size: 1.25em;
 border-bottom: 1px solid #f8d7da; /* Very Light Red */
 padding-bottom: 8px;
 display: flex;
 align-items: center;
 gap: 8px;
}
.calcufacil-video_production_time_estimator_calculator form h3 i {
  color: #e4606d; /* Lighter red */
}

.calcufacil-video_production_time_estimator_calculator .form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 18px 22px;
    margin-bottom: 25px;
}

.calcufacil-video_production_time_estimator_calculator .input-group {
    display: flex;
    flex-direction: column;
}

.calcufacil-video_production_time_estimator_calculator .input-group label {
    font-weight: 600;
    color: #721c24; /* Darkest Red */
    margin-bottom: 6px;
    font-size: 0.9em;
}

.calcufacil-video_production_time_estimator_calculator .input-group input[type="number"],
.calcufacil-video_production_time_estimator_calculator .input-group select {
    padding: 10px;
    border: 1px solid #f1b0b7; /* Medium Light Red border */
    border-radius: 4px;
    font-size: 1em;
    font-family: 'Roboto', sans-serif;
    background-color: #fff;
    width: 100%;
    box-sizing: border-box;
}
.calcufacil-video_production_time_estimator_calculator .input-group.checkbox-style-group > label {
    margin-bottom: 10px;
}
.calcufacil-video_production_time_estimator_calculator .checkbox-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    background-color: #fcf3f3;
    padding: 8px 10px;
    border-radius: 3px;
    border: 1px solid #f8d7da;
}
.calcufacil-video_production_time_estimator_calculator .checkbox-item input[type="checkbox"] {
    margin-right: 10px;
    width: 17px; height: 17px;
    cursor: pointer;
    accent-color: #dc3545; /* Red */
}
.calcufacil-video_production_time_estimator_calculator .checkbox-item label {
    margin-bottom: 0;
    font-weight: normal;
    font-size: 0.95em;
    color: #721c24;
    cursor: pointer;
}

.calcufacil-video_production_time_estimator_calculator button[type="submit"] {
    background-color: #dc3545; /* Red */
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1em;
    display: block;
    width: fit-content;
    margin: 20px auto 0 auto;
    transition: background-color 0.3s ease;
    font-weight: bold;
}

.calcufacil-video_production_time_estimator_calculator button[type="submit"]:hover {
    background-color: #c82333; /* Darker Red */
}

/* Results Area Styling */
.calcufacil-video_production_time_estimator_calculator .results-area {
    margin-top: 25px;
    padding: 20px;
    background-color: #f8d7da; /* Light red */
    border-radius: 6px;
    border: 1px solid #f5c6cb; /* Medium light red */
}
.calcufacil-video_production_time_estimator_calculator .results-area h3 {
    color: #721c24; /* Darkest Red */
    margin-bottom: 15px;
    text-align: center;
    font-size: 1.3em;
    line-height: 1.4;
}
.calcufacil-video_production_time_estimator_calculator .results-area h3 i {
    color: #e4606d; /* Lighter red */
    margin-right: 8px;
}
.calcufacil-video_production_time_estimator_calculator .results-area .summary {
 text-align: center;
 font-size: 0.95em;
 color: #721c24;
 margin-bottom: 20px;
 padding-bottom: 15px;
 border-bottom: 1px dashed #f5c6cb;
 line-height: 1.5;
}
.calcufacil-video_production_time_estimator_calculator .results-area .summary strong {
 color: #a93226;
}

.calcufacil-video_production_time_estimator_calculator .total-time-highlight {
    background-color: #f9eaea; /* Very light red */
    padding: 15px 20px;
    border-radius: 5px;
    text-align: center;
    margin-bottom: 25px;
    border: 1px solid #f5c6cb;
}
.calcufacil-video_production_time_estimator_calculator .total-time-highlight .value {
    display: block;
    font-size: 2em;
    font-weight: bold;
    color: #a93226; /* Dark Red */
    margin: 5px 0;
}

.calcufacil-video_production_time_estimator_calculator .results-area h4 {
    color: #a93226; /* Dark Red */
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 1.1em;
    border-bottom: 1px solid #f5c6cb;
    padding-bottom: 5px;
}

.calcufacil-video_production_time_estimator_calculator .task-breakdown-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    background-color: #fff;
    padding: 15px;
    border-radius: 4px;
    border: 1px solid #f5c6cb;
}
.calcufacil-video_production_time_estimator_calculator .task-breakdown-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dotted #f9eaea;
    font-size: 0.95em;
    color: #721c24;
}
.calcufacil-video_production_time_estimator_calculator .task-breakdown-list li:last-child {
    border-bottom: none;
}
.calcufacil-video_production_time_estimator_calculator .task-breakdown-list li .value {
    font-weight: 600;
    color: #a93226;
}

/* Disclaimer Box */
.calcufacil-video_production_time_estimator_calculator .disclaimer-box {
    margin-top: 25px;
    padding: 15px 20px;
    background-color: #fef5f5; /* Very light pink/red */
    border: 1px solid #fbc2c4;
    border-left: 5px solid #e4606d; /* Lighter red */
    border-radius: 5px;
}
.calcufacil-video_production_time_estimator_calculator .disclaimer-box h4 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #a93226; /* Dark Red */
    font-size: 1.1em;
}
.calcufacil-video_production_time_estimator_calculator .disclaimer-box ul {
    list-style: disc;
    margin-left: 20px;
    padding-left: 0;
    font-size: 0.9em;
    color: #721c24;
    line-height: 1.6;
}
.calcufacil-video_production_time_estimator_calculator .disclaimer-box ul li {
    margin-bottom: 8px;
}

.calcufacil-video_production_time_estimator_calculator .initial-message {
    color: #721c24;
    text-align: center;
    padding: 25px;
    background-color: #fcf3f3;
    border: 1px dashed #f8d7da;
    border-radius: 5px;
    margin-top: 20px;
}