/* styles.css */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.header {
    background-color: #0056b3;
    color: white;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header h1 {
    margin: 0;                   /* Keeps the header tight within its container */
    padding: 10px 0;             /* Adds padding above and below the text */
    font-size: 28px;             /* Sets a specific font size */
    color: #ffffff;              /* Specifies the text color, assuming a dark background */
    text-shadow: 2px 2px 4px #000000; /* Adds a shadow for better legibility against backgrounds */
    font-weight: bold;           /* Makes the text bold */
    text-transform: uppercase;   /* Transforms the text to uppercase for emphasis */
    letter-spacing: 2px;         /* Increases spacing between characters for readability */
}

.navbar {
    display: flex;
    gap: 20px;
}

.navbar a {
    color: white;
    text-decoration: none;
    padding: 10px;
}

.navbar a:hover {
    background-color: #004494;
}

.subheader {
    background-color: #e0e0e0;
    padding: 10px 20px;
    text-align: center;
}

.container {
    padding: 20px;
    flex: 1;
}

button {
    background-color: #0056b3;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}

button:hover {
    background-color: #004494;
}

h2 {
    color: #0056b3;             /* Primary color for headers */
    font-size: 24px;            /* Set the font size */
    text-align: left;         /* Center align the text */
    margin-top: 30px;           /* Add more space above the header */
    margin-bottom: 15px;        /* Add some space below the header */
    font-weight: bold;          /* Make the font bold */
    text-transform: uppercase;  /* Capitalize all letters */
    text-shadow: 1px 1px 2px #888888; /* Add a subtle shadow for depth */
    padding-bottom: 10px;       /* Padding below the text */
    border-bottom: 2px solid #0056b3; /* A solid line under the text */
}


#repos, #files, #commitHistory, #ci-cd-status, #vcs-integration, #pipeline-results, #fileContent {
    margin-top: 20px;
}

pre {
    background-color: #eaeaea;
    padding: 15px;
    border-radius: 5px;
}

.footer {
    background-color: #0056b3;
    color: white;
    display: flex;
    justify-content: space-between;
    padding: 20px;
    margin-top: auto;
}

.footer-left, .footer-right {
    flex: 1;
}

.footer-left p, .footer-right p, .footer-right ul {
    margin: 5px 0;
}

.footer .team-list {
    list-style: none;
    padding: 0;
}

.footer .team-list li {
    margin: 5px 0;
}

label {
    display: block;
    margin-top: 20px;
    margin-bottom: 5px;
    color: #333;
    font-weight: bold;
}

select {
    width: 50%;
    padding: 8px;
    border-radius: 4px;
    border: 1px solid #ccc;
    background-color: white;
}

input[type="number"] {
    width: 50%;
    padding: 8px;
    border-radius: 4px;
    border: 1px solid #ccc;
    background-color: white;
}

input[type="number"]:focus, select:focus {
    border-color: #0056b3;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 86, 179, 0.25);
}