#content_form {
    margin-bottom: 5px;
}

.open>.dropdown-menu{
    background-color: var(--portalThemeColor4, #ffffff);
}
.open>.dropdown-menu>li>a{
    color: var(--portalThemeOnColor9, #1276CE);
}


.open .dropdown-menu > li > a:hover,.dropdown-menu > .active > a:hover{
    color: var(--portalThemeColor4, #ffffff);
    background-color: var(--portalThemeOnColor9, #1276CE);
    text-decoration: Underline;

}
.dropdown-menu>.active>a{
    color: var(--portalThemeColor4, #ffffff);
    background-color: var(--portalThemeOnColor9, #1276CE);
    text-decoration: Underline;

}
.open .dropdown-menu>.active>a:focus{
    color: var(--portalThemeColor4, #ffffff);
    background-color: var(--portalThemeOnColor9, #1276CE);
    text-decoration: Underline;

}


/* 1) Kill the vertical separator created by the empty "zero-cell" TDs */
.crmEntityFormView .section td.zero-cell,
.entity-form .section td.zero-cell {
  border: none !important;        /* remove any borders */
  width: 0 !important;             /* collapse gutter width */
  padding: 0 !important;           /* remove padding */
}

/* If the line is actually on the right edge of populated cells */
.crmEntityFormView .section td.cell,
.entity-form .section td.cell {
  border-right: none !important;   /* ensure no right-side border */
}

/* 2) Remove any fieldset/frame border around the Quick View */
.crmEntityFormView fieldset,
.entity-form fieldset {
  border: none !important;
  /* Optional: transparent background so it blends with page */
  background: transparent !important;
}

/* 3) Make sure tables used as layout don't draw lines */
.crmEntityFormView table.section,
.entity-form table.section {
  border-collapse: collapse !important;
  border: 0 !important;
}

.crmEntityFormView table.section td,
.entity-form table.section td {
  border: 0 !important;
}

/* =====================================================
   BETA ANNOUNCEMENT BANNER CSS
   Add this to your primary Power Pages CSS file
   ===================================================== */

/* Beta Announcement Banner Styling */
.beta-announcement {
    background: linear-gradient(135deg, #dbeafe 0%, #eff6ff 100%);
    border-left: 6px solid #3b82f6;
    border-radius: 12px;
    padding: 2rem 2.5rem;
    margin: 2rem auto;
    max-width: 1200px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.beta-announcement-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.875rem;
    font-weight: 700;
}

.beta-announcement-content {
    flex: 1;
}

.beta-announcement-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e40af;
    margin: 0 0 0.5rem 0;
}

.beta-announcement-message {
    font-size: 1.125rem;
    color: #1e293b;
    margin: 0;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .beta-announcement {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .beta-announcement {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
}