/* General Styles for the Admin Page */
.wraped {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.titleform {
    font-size: 24px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
	text-align: center;
	width: 90%;
}



/* Table Styles */
.wp-list-table-form {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.wp-list-table-form th {
	color: white !important;
}
.wp-list-table-form thead th {
    background-color: #016efd;
    color: white;
    font-size: 14px;
    text-align: left;
    padding: 10px;
    text-transform: uppercase;
}

.wp-list-table-form tbody tr {
    border-bottom: 1px solid #ddd;
    transition: background-color 0.2s ease-in-out;
}

.wp-list-table-form tbody tr:hover {
    background-color: #f1f1f1;
}

.wp-list-table-form td {
    padding: 10px;
    font-size: 14px;
    color: #555;
    vertical-align: middle;
}

/* Link Styles */
.wp-list-table-form td a {
    color: #0073aa;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
}

.wp-list-table-form td a:hover {
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .wp-list-table-form {
        font-size: 12px;
    }

   .titleform {
        font-size: 20px;
    }

    .wp-list-table-form td, .wp-list-table th {
        padding: 8px;
    }
}


/* Frontend Form Styles */
#cybertopia-form {
    max-width: 100%;
    margin: 20px auto;
    padding: 20px;
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#cybertopia-form h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
    text-align: center;
}

#cybertopia-form table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 15px;
}

#cybertopia-form th {
    text-align: left;
    font-size: 14px;
    text-transform: uppercase;
    padding: 10px;
    background-color: #f4f4f4;
    color: #333;
}

#cybertopia-form td {
    padding: 10px;
    vertical-align: top;
    font-size: 14px;
    border-bottom: 1px solid #ddd;
}

#cybertopia-form label {
    display: inline-block;
    margin-right: 10px;
    font-size: 14px;
    color: #555;
}

#cybertopia-form input[type="radio"] {
    margin-right: 5px;
}

#cybertopia-form button {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #0073aa;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#cybertopia-form button:hover {
    background-color: #005b8f;
}

/* Responsive Form Styles */
@media (max-width: 768px) {
    #cybertopia-form {
        padding: 15px;
    }

    #cybertopia-form table {
        font-size: 12px;
    }

    #cybertopia-form button {
        font-size: 14px;
    }
}