/* Form Styles */
.shortlink-form {
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
	max-width: 450px;
    width: 100%;
}

.shortlink-form input[type="url"],
.shortlink-form input[type="text"],
.shortlink-form button {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.shortlink-form input[type="url"]:focus,
.shortlink-form input[type="text"]:focus {
    border-color: #007BFF;
    outline: none;
}

/* Button Styles */
.shortlink-form button {
    background-color: #007BFF;
    color: #ffffff;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.shortlink-form button:hover {
    background-color: #0056b3;
}
.copy-link-btn {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin: 10px;
}

.copy-link-btn:hover {
    background-color: #218838;
}
/* Message Styles */
.shortlink-message {
    margin: 20px 0;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #e7f3fe;
    color: #31708f;
	text-align: center;
	max-width: 450px;
    width: 100%;
}

/* Table Styles */
.table-responsive {
    width: 100%;
    overflow-x: auto; /* Cho phép cuộn ngang */
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 8px;
    text-align: left;
    border: 1px solid #ddd;
}

th {
    background-color: #f4f4f4;
}
.wp-list-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.wp-list-table th,
.wp-list-table td {
padding: 10px;
    border: 1px solid #dddddd47;
    text-align: left;
    background: #ffffff2b;
    color: #424242;
}

.wp-list-table th {
    background-color: #007BFF;
    color: #ffffff;
}

/* Pagination Styles */
.pagination {
    margin-top: 20px;
}

.pagination button {
    background-color: #007BFF;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    padding: 5px 10px;
    margin: 0 5px;
    cursor: pointer;
}

.pagination button:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

.pagination button:hover:not(:disabled) {
    background-color: #0056b3;
}
