/* UCF HOMEPAGE */

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


.button--primary {
    color: #0D0D0D;
    background-color: transparent;
    border: 2px solid #0D0D0D;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none !important;
    font-size: 14px;
    font-weight: bold;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 50px;
    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: #F7F7F7;
    background-color: #0D0D0D;
    border: 2px solid #0D0D0D;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease-in-out;
}


.button--secondary {
    color: #F7F7F7;
    background-color: transparent; /* Make background transparent */
    border: 2px solid #F7F7F7; /* Adding an outline */
    padding: 10px 20px; /* Reduced padding */
    text-align: center;
    text-decoration: none !important;
    display: inline-block;
    font-size: 14px; /* Reduced font size */
    font-weight: bold;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 50px; /* Making the button pill-shaped */
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    /* Center the text horizontally and vertically */
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    outline: none;
}

.button--secondary:hover {
    color: #0D0D0D;
    background-color: #F7F7F7;
    border: 2px solid #0D0D0D; /* Adding an outline */
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease-in-out;
}

/* 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 */

/* 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: #E76F51;
	background-color: rgba(231, 111, 81, 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); 
}