/* UCF HOMEPAGE */

/* Removed the code from the <a> tag to prevent issues when editing buttons */

.button--primary {
    color: #FAFAFA;
    background-color: #1B1B1B;
    border: none;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none !important;
    display: inline-block;
    font-size: 18px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 2px;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease 0s;
    /* Center the text horizontally and vertically */
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    outline: none;
}

.button--primary:hover {
    color: #FAFAFA;
    background-color: #3C3C3B;
    box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-7px);
}

.button--primary:focus {
    /* Customize the focus indicator */
    box-shadow: 0 0 0 3px rgba(197, 154, 0, 0.5);
    outline: 3px solid rgba(197, 154, 0, 0.5);
}


.button--secondary {
    color: #1B1B1B;
    background-color: #CCA000;
    border: none;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none !important;
    display: inline-block;
    font-size: 18px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 2px;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease 0s;
    /* Center the text horizontally and vertically */
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Ensure the button is focusable */
}

.button--secondary:hover {
    color: #1B1B1B;
    background-color: #E6B000;
    box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-7px);
}

.button--secondary:focus {
    /* Customize the focus indicator */
    box-shadow: 0 0 0 3px rgba(27, 27, 27, 0.5);
}

/* Button styling */
div.ucf--btn a.ucf--btn--link.button--primary {
    /* Removed 'display: block;' to avoid unexpected behavior */
    padding: 2em 0; /* Adjusted padding for better button appearance */
    height: 100%;
}

/* END - UCF homepage styling */



/* ACCORDIONS */

/* Accordion color change */
.ui-accordion .ui-accordion-header.ui-state-default {
    background: var(--ic-brand-button--secondary-bgd);
    color: var(--ic-brand-button--secondary-text);
    box-shadow: none;
    border-color: #C7CDD1;
    border-bottom: 1px solid #C7CDD1;
}

.uob-accordion h4.ui-accordion-header {
    font-size: 1.3em;
}

/* Accordion content background */
.uob-accordion .ui-accordion-content {
    margin-top: 0;
    margin-bottom: 3px;
    padding: 0.5em 0.9em;
    background-color: #f5f5f5;
}

/* Accordion hover color */
.uob-accordion .ui-accordion-header.ui-state-default.ui-state-hover {
    background: var(--ic-brand-primary);
}

/* ACCORDIONS -- ENDS */

/* TABS */

/* Tab color */
.ui-tabs .ui-tabs-nav li {
    background: var(--ic-brand-button--secondary-bgd);
    /* Added secondary branding color to tabs */
}

/* TABS -- ENDS */

.InfoBoxes {
	border: 1px solid;
 	border-radius: 5px;
	padding: 20px; /* Increased padding */
	margin: 20px auto; /* Updated margin for centering */
	width: 80%; /* Increased width */
}

.box1 {
	border-color: #260649;
	background-color: rgba(38, 6, 73, 0.1); 
}

.box2 {
	border-color: #2A9D8F;
	background-color: rgba(42, 157, 143, 0.1); 
}

.box3 {
	border-color: #0096C7;
	background-color: rgba(0, 150, 199, 0.1); 
}

.box4 {
	border-color: #00B353;
	background-color: rgba(0, 179, 83, 0.1); 
}