/* Button container */
.dbp-button-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* Button wrapper for two columns */
.dbp-button-wrapper {
    flex: 1 1 calc(50% - 10px); /* Two columns with gap */
    box-sizing: border-box;
}

/* Button styles */
.dbp-button {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.dbp-button:hover {
    opacity: 0.9;
    text-decoration: none; /* Prevent underline on hover */
}

/* Admin table styles */
#dbp-button-table tbody tr {
    cursor: move;
}

#dbp-button-table .dashicons-move {
    cursor: move;
    color: #999;
}

#dbp-button-table .ui-sortable-placeholder {
    background: #f9f9f9;
    border: 1px dashed #ccc;
    visibility: visible !important;
}

/* New styles for admin form */
#dbp-button-table input[type="color"] {
    width: 60px;
    padding: 0;
    height: 30px;
}

#dbp-button-table input[type="number"] {
    width: 70px;
}