/* Hiding Sector Guides Section on Student UI - Temporary CSS until image is updated  */
.dash-publications {
    display: none;
}

/***** CUSTOM PANE CSS, added by GTI / Angela *****/
@media (min-width: 992px) {
	.flex-dash-row .dash-card-custom .card-body {
		/** changing the height of the custom pane body **/
		max-height:900px;
	}
}

.dashboard-content .card h1.dash-card-header {
    display: none;   
}

/***** CUSTOM PANE CSS END *****/
	
.banner-container {
    position: relative;
    display: inline-block;
    cursor: pointer;
  }

  .banner-options {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    border-radius:20px;
  }

  .banner-container:hover .banner-options {
    opacity: 1;
    pointer-events: auto;
  }

  .banner-option {
    background: #fff;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-decoration: none !important;
    color: #333;
    font-weight: bold;
    transition: background 0.2s;
    display:block;
  }

  .banner-option:hover {
    background: #eee;
}
/***** CUSTOM PANE CSS END *****/


/** STUDENT DASHBOARD - moving the custom pane and roundals to the center, ANG @ GTI TC-29731  **/
.dashboard-header .col-md-8.col-12 {
    margin: 0 auto;
    }
.dashboard-header .dash-cta-deck {
    justify-content: center;
    gap: 3rem;
    }
.flex-dash-row {
    justify-content: center;
    }
.flex-dash-row .flex-dash-col-right {
    display:none;
    }
@media (min-width: 768px) {
    /* moving the logo to the center */
    .romeo .main-banner-outer .main-banner-container {
        justify-content: center;
        }
    }
.dashboard-content>section .container.dash-pathways {
    /*there is only one section, so the margins/padding are wrong - fix to push down the 'pathways' section*/
    padding-top: 6rem;
    }
