.ribbon {
	background-color: #DEEBF7;
	display: flex;
	padding: 5px;
}

.ribbonGroup {
	display: grid;
	border: 1px #0067B0 solid;
	justify-content: left;
}

.ribbonGroup > legend {
	font-size: 10pt;
	font-weight: bold;
}

.ribbonGroup > select {
	font-size: 10pt;
}

.ribbonButton {
	display: flex;
	font-size: 10pt;
	padding: 5px 15px 5px 5px;
	align-items: center;
}

.ribbonButton > img {
	width: 24px;
	height: auto;
	padding-right: 5px;
}

.ribbonButton:hover {
	color: #FFFFFF;
	cursor: pointer;
	background-color: #75AFFF;	
}

.bigRibbonButton {
	height: 48px;
	text-align: center;
	justify-content: center;
	flex-direction: column;
	align-self: baseline;
}

.bigRibbonButton > * {
	display: block;	
}

.bigRibbonButton > img {
	width: 36px;
	height: auto;
	padding-right: revert;
}

.bigRibbonButtonOne { grid-area: bigButtonOne; }

.bigRibbonButtonTwo { grid-area: bigButtonTwo; }

.bigRibbonButtonThree { grid-area: bigButtonThree; }


.jobMonitorGroupOne {
	grid-template-areas: 'bigButtonOne .'
	'bigButtonOne .';
}

.jobMonitorGroupTwo {
    display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-areas:
            "bigButtonOne bigButtonTwo bigButtonThree"
            ". . .";
        gap: 10px;
}
.myFilesGroupOne {
	grid-template-areas: 'bigButtonOne bigButtonTwo bigButtonThree .'
	'bigButtonOne bigButtonTwo bigButtonThree .';
}

.contentRenderingGroupOne {
	grid-template-areas: 'bigButtonOne .'
	'bigButtonOne .';
}

.myFilesGroupTwo {
	grid-template-areas: 'bigButtonOne'
	'bigButtonOne';
}

.showFileGroupOne {
	grid-template-areas: 'bigButtonOne'
	'bigButtonOne';
}

.contentReportingGroupOne {
	grid-template-areas: 'bigButtonOne .'
	'bigButtonOne .';
}

.platformDocumentationGroupOne {
	grid-template-areas: 'bigButtonOne . .'
	'bigButtonOne . .';
}

.documentValidationGroupOne {
	grid-template-areas: 'bigButtonOne bigButtonTwo .'
	'bigButtonOne bigButtonTwo .';
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.modal-content.new-section-form {
    background-color: #fff !important;
    padding: 25px 30px;
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.3s ease-in-out;
}

.modal-content h2 {
  margin-bottom: 20px;
  font-size: 22px;
  color: #333;
}

/* Label & Input styling */
.modal-content label {
  display: block;
  margin-top: 12px;
  margin-bottom: 6px;
  font-weight: 600;
  color: #444;
}

.modal-content input[type="text"],
.modal-content textarea {
  width: 98.5%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
  transition: border-color 0.2s;
  background-color: #fdfdfd;
}

.modal-content input[type="text"]:focus,
.modal-content textarea:focus {
  border-color: #007bff;
  outline: none;
  background-color: #fff;
}

/* Button styling */
.modal-actions {
  margin-top: 25px;
  text-align: right;
}

.modal-actions button {
  padding: 8px 16px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  margin-left: 10px;
  transition: background-color 0.3s;
}

.modal-actions button:first-child {
  background-color: #007bff;
  color: white;
}

.modal-actions button:first-child:hover {
  background-color: #0056b3;
}

.modal-actions button:last-child {
  background-color: #6c757d;
  color: white;
}

.modal-actions button:last-child:hover {
  background-color: #5a6268;
}

/* Fade animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.modal-content textarea {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  box-sizing: border-box;
  resize: vertical;
}
.modal-content select {
	width: 100%;
	padding: 10px 12px;
	margin-bottom: 16px;
	border: 1px solid #ccc;
	border-radius: 6px;
	font-size: 14px;
	box-sizing: border-box;
}
