
/* General styling for the metabox container */
#plans-container {
    margin-top: 20px;
}

/* Style for the Add Plan button */
#add-plan-button {
    background-color: #0073aa;
    color: white;
    /* padding: 10px 20px; */
    font-size: 16px;
    border: none;
    cursor: pointer;
    margin-bottom: 20px;
}

#add-plan-button:hover {
    background-color: #005a8d;
}

/* Style for the form container */
#plan-form-container {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

#plan-form-container p {
    margin-bottom: 15px;
}

#plan-form-container label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

#plan-form-container input, #plan-form-container textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

/* Style for the Save Plan button */
#save-plan-button {
    background-color: #46b450;
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    margin-top: 20px;
}

#save-plan-button:hover {
    background-color: #388e3c;
}

/* Style for the saved plans list */
#saved-plans-list {
    list-style-type: none;
    margin-top: 20px;
    padding: 0;
}

#saved-plans-list li {
    background-color: #ffffff;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

#saved-plans-list h2 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #0073aa;
}

#saved-plans-list p {
    font-size: 14px;
    color: #555;
}

#buy-now{
    padding: 10px 20px;
    cursor: pointer;
    background: yellowgreen;
    color: white;
    font-size: 18px;
    font-weight: 600;
    border-radius: 15px;
}

.buy-now:hover{
    background-color: #fac430 !important;
    color: black !important;
}

i{
    font-size: 20px;
    font-weight: bolder !important;
    color: green;
}

/* General styling for the plan item */
.plan-item {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    margin: 15px 0;
    border: 1px solid #ddd;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Style for labels */
.plan-item label {
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
}

/* Style for text inputs and textarea */
.plan-item input[type="text"],
.plan-item input[type="number"],
.plan-item textarea {
    width: 100%;
    padding: 10px;
    margin: 8px 0 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    font-size: 16px;
}

/* Style for the plan license codes textarea */
.plan-item .plan-license-codes {
    min-height: 100px;
    resize: vertical;
}

/* Style for the remove plan button */
.plan-item .remove-plan-button {
    background-color: #ff4d4d;
    color: white;
    border: none;
    /* padding: 10px 15px; */
    border-radius: 5px;
    cursor: pointer;
    font-size: 15px;
    text-align: center;
    display: inline-block;
    /* margin-top: 10px; */
}

.plan-item .remove-plan-button:hover {
    background-color: #e60000;
}

/* Styling for the input fields */
.plan-item input[type="text"], .plan-item input[type="number"], .plan-item textarea {
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    font-size: 16px;
}

/* Styling for buttons */
.plan-item button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.plan-item button:hover {
    background-color: #0056b3;
}

/* Button container styling for add/remove buttons */
.plan-item button {
    display: inline-block;
    margin-right: 15px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .plan-item {
        padding: 15px;
    }

    .plan-item input[type="text"],
    .plan-item input[type="number"],
    .plan-item textarea {
        font-size: 14px;
    }
}
