/** {
           margin: 0;
            padding: 0;
            box-sizing: border-box;
        }*/
        
        /* Custom variables for easy theming */
        :root {
            --primary-color: #1d4c4b;
            --secondary-color: #f9fafb;
            --accent-color: #e5e7eb;
            --text-color: #374151;
            --button-hover: #f1843e;
            --shadow-color: rgba(0, 0, 0, 0.1);
        }
        
        /* Base styles */
        body {
            /*font-family: 'Roboto', sans-serif;
            color: var(--text-color);
            line-height: 1.6;*/
        }
        
        /* Container for the calculator */
        .wp_time_decimal_container {
            /*max-width: 960px;
            margin: 0 auto;
            padding: 20px;
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 10px var(--shadow-color);*/
										
					font-family: "Josefin Sans";
					max-width: 1000px;
					margin: 20px auto;
  				box-sizing: border-box;					
					background: #fff;
					border-radius: 8px;
					box-shadow: 0 4px 10px 2px rgba(0, 0, 0, 0.17);  
					padding: 20px;
  				margin-bottom: 20px;
	  
        }
        
        /* Calculator header */
        .wp_time_decimal_header {
            margin-bottom: 20px;
           /* border-bottom: 1px solid var(--accent-color);*/
            padding-bottom: 15px;
        }
        
        .wp_time_decimal_title {
            font-size: 24px;
            font-weight: 500;
            color: var(--primary-color);
        }
        
        /* Input section */
        .wp_time_decimal_input_section {
            padding: 15px;
            /*background-color: var(--secondary-color);*/
            border-radius: 8px;
            margin-bottom: 20px;
        }
        
        .wp_time_decimal_input_label {
            display: block;
            font-size: 18px;
            font-weight: 500;
            margin-bottom: 15px;
        }
        
        .wp_time_decimal_input_field {
            width: 100%;
            padding: 12px;
            border: 1px solid var(--accent-color);
            border-radius: 5px;
            font-size: 16px;
            transition: border-color 0.3s;
        }
        
        .wp_time_decimal_input_field:focus {
            outline: none;
            border-color: var(--primary-color);
        }
        
        /* Button section */
        .wp_time_decimal_button_section {
            display: flex;
            gap: 15px;
            margin-bottom: 25px;
        }
        
        .wp_time_decimal_button {
            flex: 1;
            padding: 12px 20px;
            border: none;
            border-radius: 5px;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: background-color 0.3s, transform 0.1s;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .wp_time_decimal_button i {
            margin-right: 8px;
        }
        
        .wp_time_decimal_calculate {
            background-color: var(--primary-color);
            color: white;
        }
        
        .wp_time_decimal_reset {
            background-color: var(--primary-color);
            color: white;
        }
        
        .wp_time_decimal_button:hover {
            background-color: var(--button-hover);
            transform: translateY(-2px);
        }
        
        .wp_time_decimal_button:active {
            transform: translateY(0);
        }
        
        /* Results section */
        .wp_time_decimal_results {
            background-color: var(--secondary-color);
            border-radius: 8px;
            padding: 20px;
            display: none;
        }
        
        .wp_time_decimal_results_visible {
            display: block;
        }
        
        .wp_time_decimal_results_grid {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 15px;
        }
        
        .wp_time_decimal_result_item {
            flex: 1;
            min-width: 120px;
            text-align: center;
            padding: 15px;
        }
        
        .wp_time_decimal_value {
            font-size: 32px;
            font-weight: 700;
            display: block;
            margin: 10px 0;
            color: var(--primary-color);
        }
        
        .wp_time_decimal_label {
            font-size: 16px;
            color: var(--text-color);
            font-weight: 500;
        }
        
        .wp_time_decimal_icon {
            font-size: 24px;
            color: var(--primary-color);
            margin-bottom: 10px;
        }
        
        .wp_time_decimal_or_text {
            text-align: center;
            font-size: 16px;
            margin: 20px 0;
            color: #6b7280;
        }
        
        /* Form group styling */
        .wp_time_decimal_form_group {
            margin-bottom: 15px;
        }
        
        .wp_time_decimal_form_label {
            display: block;
            margin-bottom: 6px;
            font-weight: 500;
        }
        
        .wp_time_decimal_input_group {
            display: flex;
            gap: 10px;
        }
        
        .wp_time_decimal_input_wrapper {
            flex: 1;
        }
        
        /* Responsive design */
        @media (max-width: 768px) {
            .wp_time_decimal_button_section {
                flex-direction: column;
            }
            
            .wp_time_decimal_results_grid {
                flex-direction: column;
            }
            
            .wp_time_decimal_result_item {
                min-width: 100%;
            }
        }