/* Main navigation wrapper padding */
.pkp_navigation_primary_wrapper {
    padding: 10px;
}

/* Table styling */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

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

/* Table header styling */
th {
    background-color: #f2f2f2;
}

/* Prevent table cell overflow */
td.name {
    white-space: nowrap;
}

/* User navigation wrapper background */
.profile a{
    padding: 5px 10px;
    color: black !important;
}

#pkpDropdown1 {
    color: black !important;
}

/* Additional styling for better readability */
body {
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 1.6;
}

/* Style for links */
a {
    color: #007BFF;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Buttons */
button, input[type="button"] {
    background-color: #007BFF;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover, input[type="button"]:hover {
    background-color: #0056b3;
}

/* Heading styles */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: #333;
}

/* Make images responsive */
img {
    max-width: 100%;
    height: auto;
}

/* Add padding around the main content */
.container {
    padding: 20px;
}

.obj_announcement_summary {
  width: 100% !important;
}


.more {
  display: none !important;
}

/* Responsive design for smaller devices */
@media (max-width: 768px) {
    .pkp_navigation_primary_wrapper {
        padding: 5px;
    }

    table {
        font-size: 14px;
    }

    button, input[type="button"] {
        font-size: 14px;
        padding: 8px 16px;
    }
}
