/* Container for the license key input form */
.license-key-wrap {
    max-width: 600px;
    margin: 0 auto;
      margin-top: 0px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-top: 80px;
  }

/* Style for the form inside the container */
#fleximp-license-key-form {
    display: flex;
    flex-direction: column;
}

/* Wrap the label and input */
.license-key-input-wrap {
    margin-bottom: 20px;
}

/* Style for the input label */
.license-key-input-wrap label {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #333;
}

/* Style for the input field */
.license-key-input input {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-top: 5px;
    box-sizing: border-box;
}

/* Button styles */
.button {
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin: 5px 0;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #0073e6;
    color: #fff;
}

/* Deactivate button style */
.deactivate-domain {
    background-color: #f44336;
    color: white;
}

.deactivate-domain:hover {
    background-color: #d32f2f;
}

/* Next button style */
.next-step-activation {
    background-color: #4caf50;
    color: white;
}

.next-step-activation:hover {
    background-color: #388e3c;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 600px) {
    .license-key-wrap {
        padding: 15px;
    }

    .button {
        width: 100%;
        margin: 10px 0;
    }
}


.wp-core-ui .button, .wp-core-ui .button-secondary {
    color: #2271b1;
    border-color: #2271b1;
    background: #f6f7f7;
    vertical-align: top;
    margin-top: 10px;
}