.wc-parcelamento-container {
    margin: 10px 0 5px;
}

.wc-parcelamento-dropdown {
    position: relative;
    display: inline-block;
    width: 100%;
}

.wc-parcelamento-dropbtn {
    background-color: #2185d0;
    color: #fff;
    padding: 8px 15px;
    font-size: 14px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    text-align: center;
    transition: all 0.3s;
}

.wc-parcelamento-dropbtn:hover {
    background-color: #1678c2;
}

.wc-parcelamento-dropbtn .dashicons {
    margin-left: 5px;
    vertical-align: middle;
}

.wc-parcelamento-dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    width: 100%;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    z-index: 999;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 0;
    margin-top: 5px;
}

.wc-parcelamento-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    margin-bottom: 0;
}

.wc-parcelamento-table th, 
.wc-parcelamento-table td {
    border: 1px solid #e0e0e0;
    padding: 3px 5px;
    text-align: center;
}

.wc-parcelamento-table thead th {
    background-color: #f0f0f0;
    font-weight: bold;
}

.wc-parcelamento-table tr.even {
    background-color: #f9f9f9;
}

.wc-parcelamento-table tr.odd {
    background-color: #fff;
}

.wc-parcelamento-bottom {
    font-size: 13px;
    color: #444;
    margin-top: 10px;
    text-align: center;
}

