.cmc-container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 30px;
    font-family: 'Arial', sans-serif;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cmc-container h2 {
    color: #333;
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
    font-weight: 600;
}

.cmc-container h3 {
    color: #333;
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 500;
    text-align: left;
}

.cmc-inputs {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
}

.cmc-input-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.cmc-input-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    color: #444;
    font-size: 14px;
}

.cmc-input-group input,
.cmc-input-group select {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.cmc-input-group select {
    background-color: #fff;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="black" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position-x: 98%;
    background-position-y: 50%;
}

.cmc-input-group input:focus,
.cmc-input-group select:focus {
    outline: none;
    border-color: #ff6200;
    box-shadow: 0 0 5px rgba(255, 98, 0, 0.2);
}

.cmc-buttons {
    text-align: center;
    margin-bottom: 30px;
}

#cic-calculate, #cic-reset {
    padding: 12px 40px;
    margin: 0 10px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

#cic-calculate {
    background-color: #ff6200;
    color: white;
    border: none;
}

#cic-calculate:hover {
    background-color: #e55a00;
}

#cic-reset {
    background-color: #e0e0e0;
    border: none;
    color: #333;
}

#cic-reset:hover {
    background-color: #d0d0d0;
}

#cic-results {
    margin-top: 30px;
    padding: 0;
    border: none;
    background-color: transparent;
}

.cmc-results-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.cmc-results-table thead {
    background-color: #ff6200;
    color: white;
}

.cmc-results-table th, .cmc-results-table td {
    padding: 15px 20px;
    text-align: left;
    font-size: 16px;
}

.cmc-results-table th {
    font-weight: 600;
}

.cmc-results-table tbody tr {
    border-bottom: 1px solid #e5e5e5;
    transition: background-color 0.3s ease;
}

.cmc-results-table tbody tr:last-child {
    border-bottom: none;
}

.cmc-results-table tbody tr:hover {
    background-color: #f1f1f1;
}

.cmc-results-table td {
    color: #333;
}

.cmc-social-share {
    margin-top: 20px;
    text-align: center;
}

.cmc-social-share p {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
}

.cmc-share-btn {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    margin: 0 10px;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.cmc-share-btn:hover {
    transform: scale(1.1);
}

.cmc-share-facebook {
    background-color: #3b5998;
}

.cmc-share-facebook:hover {
    background-color: #2d4373;
}

.cmc-share-x {
    background-color: #000000;
}

.cmc-share-x:hover {
    background-color: #333333;
}

.cmc-share-whatsapp {
    background-color: #25d366;
}

.cmc-share-whatsapp:hover {
    background-color: #1da851;
}

.cmc-user-guide {
    margin-top: 40px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
}

.cmc-user-guide .cmc-short-description {
    margin-bottom: 20px;
}

.cmc-user-guide .cmc-short-description p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 10px;
}

.cmc-user-guide h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.cmc-user-guide p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.cmc-user-guide ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 15px;
}

.cmc-user-guide ul li {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 10px;
}

.cmc-user-guide ul li strong {
    color: #333;
}