/* ===========================================
   Volume Converter - Tool Specific Styles
   =========================================== */

/* Tool Layout */
.vc-box {
    max-width: 800px;
    margin: 0 auto;
}

/* Controls and Inputs */
.vc-controls {
    display: flex;
    gap: 20px;
    background: #fdf2f8; /* Light Pink/Magenta BG */
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #fbcfe8;
    margin-bottom: 30px;
    align-items: flex-end;
}

.vc-input-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.vc-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #9d174d; /* Dark Pink Label */
    margin-bottom: 6px;
}

.vc-input, .vc-select {
    padding: 10px;
    border: 1px solid #ec4899; /* Medium Pink Border */
    border-radius: 6px;
    font-size: 1rem;
    color: #1f2937;
    width: 100%;
    height: 40px;
}

/* Calculate Button */
.vc-btn-calc {
    padding: 10px 20px;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    background: #db2777; /* Primary Pink Button */
    color: white;
    transition: background 0.2s;
    height: 40px;
    white-space: nowrap;
}
.vc-btn-calc:hover {
    background: #be185d;
}

/* --- Results Table --- */

.vc-results-section {
    margin-top: 30px;
}

.vc-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.vc-table th, .vc-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #fbcfe8; /* Light Divider */
}

.vc-table th {
    background: #fbcfe8; /* Lightest Pink Header */
    font-size: 1rem;
    color: #831843;
    text-transform: uppercase;
    font-weight: 700;
}

.vc-table td {
    font-size: 1.1rem;
    color: #1f2937;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
}

/* Highlighting */
.vc-highlight-unit {
    font-weight: 700;
    color: #db2777; /* Primary Pink */
    background: #fdf2f8;
    padding: 2px 8px;
    border-radius: 4px;
}

/* Responsive Styling */
@media (max-width: 600px) {
    .vc-controls {
        flex-direction: column;
        align-items: stretch;
    }
    .vc-btn-calc {
        flex: 1;
        height: auto;
    }
    .vc-table th, .vc-table td {
        padding: 12px;
        font-size: 1rem;
    }
}