/**
 * Memberku Public Styles
 */

/* Login & Register Forms */
.memberku-login-form,
.memberku-register-form {
    max-width: 400px;
    margin: 20px auto;
    padding: 30px;
    background: #fff;
    border: 1px solid #dcdcde;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.memberku-login-form input[type="text"],
.memberku-login-form input[type="password"],
.memberku-register-form input[type="text"],
.memberku-register-form input[type="email"],
.memberku-register-form input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #dcdcde;
    border-radius: 3px;
    font-size: 14px;
}

.memberku-login-form input[type="submit"],
.memberku-register-form input[type="submit"] {
    width: 100%;
    padding: 12px;
    background: #2271b1;
    color: #fff;
    border: none;
    border-radius: 3px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.memberku-login-form input[type="submit"]:hover,
.memberku-register-form input[type="submit"]:hover {
    background: #135e96;
}

/* Dashboard */
.memberku-dashboard {
    max-width: 800px;
    margin: 20px auto;
    padding: 30px;
    background: #fff;
    border: 1px solid #dcdcde;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.member-info {
    background: #f0f6fc;
    padding: 20px;
    border-radius: 3px;
    margin: 20px 0;
}

.member-info p {
    margin: 10px 0;
}

/* Services Grid */
.memberku-services {
    max-width: 1200px;
    margin: 20px auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.service-card {
    background: #fff;
    border: 1px solid #dcdcde;
    border-radius: 4px;
    padding: 25px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.service-card h3 {
    margin: 0 0 15px 0;
    color: #1d2327;
}

.service-card p {
    color: #646970;
    line-height: 1.6;
}

.service-card .price {
    font-size: 24px;
    font-weight: 600;
    color: #2271b1;
    margin: 20px 0;
}

.service-card .button {
    display: inline-block;
    padding: 12px 24px;
    background: #2271b1;
    color: #fff;
    text-decoration: none;
    border-radius: 3px;
    transition: background 0.2s;
}

.service-card .button:hover {
    background: #135e96;
}

/* Orders Table */
.memberku-orders {
    max-width: 1200px;
    margin: 20px auto;
}

.orders-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border: 1px solid #dcdcde;
    border-radius: 4px;
    overflow: hidden;
}

.orders-table thead {
    background: #f0f0f1;
}

.orders-table th,
.orders-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #dcdcde;
}

.orders-table th {
    font-weight: 600;
    color: #1d2327;
}

.orders-table td {
    color: #50575e;
}

.orders-table tbody tr:hover {
    background: #f6f7f7;
}

/* Responsive */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .memberku-dashboard,
    .memberku-services,
    .memberku-orders {
        padding: 15px;
    }
    
    .orders-table {
        font-size: 14px;
    }
    
    .orders-table th,
    .orders-table td {
        padding: 8px 10px;
    }
}
