.asc-purchase-form {
    max-width: 500px;
    margin: 0 auto;
    padding: 30px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    font-family: sans-serif;
}

.asc-purchase-form div {
    margin-bottom: 20px;
}

.asc-purchase-form label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.asc-purchase-form input {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.asc-purchase-form button {
    background-color: #0073aa;
    color: white;
    padding: 12px 20px;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.asc-purchase-form button:hover {
    background-color: #005f8d;
}

.asc-product-preview {
    max-width: 500px;
    margin: 0 auto 30px auto;
    padding: 20px;
    border: 2px solid #0073aa;
    border-radius: 8px;
    background-color: #f0f8ff;
    text-align: center;
}

.asc-product-preview h2 {
    margin-top: 0;
    font-size: 20px;
    color: #0073aa;
}

.asc-product-preview h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.asc-product-preview p {
    margin: 5px 0;
}

/* === DASHBOARD LAYOUT === */
.asc-dashboard-wrapper {
    display: flex;
    max-width: 1000px;
    margin: 0 auto;
    gap: 30px;
    padding: 30px 15px;
}

.asc-dashboard-sidebar {
    width: 220px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #f7f7f7;
    padding: 20px;
    height: fit-content;
}

.asc-dashboard-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.asc-dashboard-sidebar li {
    margin-bottom: 15px;
}

.asc-dashboard-sidebar a {
    text-decoration: none;
    font-weight: bold;
    color: #0073aa;
}

.asc-dashboard-sidebar a:hover {
    color: #005f8d;
}

.asc-dashboard-content {
    flex-grow: 1;
}


/* === MANAGE LICENSE PAGE === */
.asc-license-table {
    max-width: 800px;
    margin: 0 auto;
}

.asc-license-table table {
    width: 100%;
    border-collapse: collapse;
}

.asc-license-table th,
.asc-license-table td {
    padding: 12px;
    border: 1px solid #ccc;
    text-align: left;
}

.asc-license-table .status {
    padding: 4px 8px;
    border-radius: 4px;
    color: white;
    font-size: 12px;
}

.status.active {
    background-color: #28a745;
    color: #FFF;
    padding: 5px 8px;
    border-radius: 10px;
}

.status.expired {
    background-color: #FF0000;
    color: #FFF;
}

.status.open {
    background-color: #ffc107;
    color: #000;
}

/* === UPDATE PROFILE PAGE === */
.asc-profile-form {
    max-width: 500px;
    margin: 0 auto;
    padding: 30px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.asc-profile-form div {
    margin-bottom: 20px;
}

.asc-profile-form label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.asc-profile-form input {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.asc-profile-form button {
    background-color: #0073aa;
    color: white;
    padding: 12px 20px;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.asc-profile-form button:hover {
    background-color: #005f8d;
}

.success-message {
    color: green;
    font-weight: bold;
}

/* === LOGIN FORM === */
.asc-login-form {
    max-width: 400px;
    margin: 40px auto;
    padding: 30px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fefefe;
}

.asc-login-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
}

.asc-login-form input {
    width: 100%;
    padding: 8px 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.asc-login-form button {
    background-color: #0073aa;
    color: white;
    padding: 10px 18px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
}

.asc-login-form button:hover {
    background-color: #005f8d;
}

.asc-error {
    max-width: 400px;
    margin: 10px auto;
    padding: 10px 15px;
    color: #a94442;
    background: #f2dede;
    border: 1px solid #ebccd1;
    border-radius: 4px;
}
