/* Download box styles */
.muathemewpgiare-download-box {
    background: #f9f9f9;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    margin: 30px 0;
    overflow: hidden;
}

.muathemewpgiare-download-title {
    background: #2271b1;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    padding: 15px 20px;
    position: relative;
}

.muathemewpgiare-download-title::before {
    content: '\f316';
    font-family: dashicons;
    font-size: 20px;
    margin-right: 10px;
    vertical-align: middle;
}

.muathemewpgiare-download-versions {
    padding: 20px;
}

.muathemewpgiare-download-version-item {
    align-items: center;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding: 15px;
    transition: all 0.3s ease;
}

.muathemewpgiare-download-version-item:last-child {
    margin-bottom: 0;
}

.muathemewpgiare-download-version-item:hover {
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.muathemewpgiare-download-version-info {
    display: flex;
    flex-direction: column;
}

.muathemewpgiare-download-version-name {
    color: #23282d;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.muathemewpgiare-download-version-price {
    color: #646970;
    font-size: 14px;
}

.muathemewpgiare-download-free {
    color: #46b450;
    font-weight: 600;
}

.muathemewpgiare-download-version-actions {
    margin-left: 20px;
}

.muathemewpgiare-download-button,
.muathemewpgiare-buy-button {
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.muathemewpgiare-download-button {
    background: #46b450;
    color: #ffffff;
}

.muathemewpgiare-download-button:hover {
    background: #389e3c;
}

.muathemewpgiare-buy-button {
    background: #2271b1;
    color: #ffffff;
}

.muathemewpgiare-buy-button:hover {
    background: #135e96;
}

/* Login notice styles */
.muathemewpgiare-download-login-notice {
    padding: 20px;
    text-align: center;
}

.muathemewpgiare-download-login-notice p {
    color: #646970;
    font-size: 16px;
    margin-bottom: 15px;
}

.muathemewpgiare-download-login-button {
    background: #2271b1;
    border-radius: 4px;
    color: #ffffff;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.muathemewpgiare-download-login-button:hover {
    background: #135e96;
    color: #ffffff;
    text-decoration: none;
}

/* Responsive styles */
@media screen and (max-width: 600px) {
    .muathemewpgiare-download-version-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .muathemewpgiare-download-version-actions {
        margin-left: 0;
        margin-top: 15px;
        width: 100%;
    }
    
    .muathemewpgiare-download-button,
    .muathemewpgiare-buy-button {
        display: block;
        width: 100%;
    }
}