
/******************* Loader ************************/
.loader {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #555;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/******************* Loader ************************/

form#ci-form {
    margin-bottom: 25px;
}

form#ci-form select {
    margin-bottom: 10px;
    margin-right: 10px;
    width: 25%;
    display: inline;
}
form#ci-form label {
    margin-right: 10px;
}

table#ci-table td ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

table#ci-table th {
    background-color: #f2f2f2;
}

table#ci-table details, summary {
    margin-bottom: 5px;
}

table#ci-table td {
    vertical-align: top;
}

div.ci-container {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two equal columns */
    gap: 5px; /* Space between columns */
}

div.ci-item {
    padding: 5px;
    border: 0px solid #ddd;
}

div.ci-item p {
    margin: 5px 10px;
    padding: 5px 10px;

}


p.success {
    color: #009988
}

p.failure {
    color: #FF7043;
}

p.not_built {
    color: #0077BB;
}


p.aborted {
    color: #33BBEE;
}


div.success {
    background-color: #009988;
    margin: 5px 10px;
    padding: 5px 10px;
    border-radius: 5px;
    color: white;
}

div.failure {
    background-color: #FF7043;
    margin: 5px 10px;
    padding: 5px 10px;
    border-radius: 5px;
    color: white;
}

div.not_built {
    background-color: #0077BB;
    margin: 5px 10px;
    padding: 5px 10px;
    border-radius: 5px;
    color: white;
}

div.aborted {
    background-color: #33BBEE;
    margin: 5px 10px;
    padding: 5px 10px;
    border-radius: 5px;
    color: white;
}



