.items-grid-container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0px;
}

.items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    max-width: 100%;
}

@media (min-width: 1200px) {
    .items-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.item-card {
    background: white;
    border-radius: 15px;
    overflow: visible;
    text-align: center;
    padding: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    margin-bottom: 40px;
    border: 2px solid #E6E6E6;
}

.item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.eicon {
    content: "\e90e";
    background: white;
    font-size: 10px;
    border-radius: 40px;
    padding: 4px;
    color: #041958;
    font-weight: bold;
}
.item-number {
    width: 100%;
    height: 80px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    font-weight: 900;
    margin: 0 auto 20px;
    font-family: 'Apis';
}

.type_pendiente .item-number{
    background: #FFFFFF;
    color: #E4E7EF;
}

.type_solicitada .item-number{
    background: #0050CC;
    color: #FFFFFF;
}

.type_tomada .item-number{
    background: #F5FAFD;
    color: #041958;
}

.type_pendiente .statuslab {
    background: #EAEEF4;
    color: #041958;
    text-align: center;
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 5px 0;
    max-width: 110px;
}

.type_solicitada .statuslab{
    background: #0050CC;
    color: #FFFFFF;
}

.type_tomada .statuslab{
    background: #C0D72F;
    color: #041958;
}
i.eicon.eicon-check {
    color: #C0D72F;
}
.item-title {
    font-size: 17px;
    font-weight: bold;
    color: #041958;
    margin-bottom: 15px;
    text-decoration: underline;
    text-align: left;
    line-height: normal;
}

.item-description {
    font-size: 11px;
    color: #041958;
    text-align: left;
    line-height: 1.4;
    margin-bottom: 10px;
}

.item-author {
    font-size: 11px;
    color: #041958;
    text-align: left;
    margin-bottom: 20px;
    font-weight: bold;
}

.item-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-solicitar {
    background: #001965;
    color: white;
    padding: 7px 10px 7px 17px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.btn-solicitar:hover {
    background: #2d5a87;
    color: white;
    text-decoration: none;
}

.item-status {
    margin-top: 10px;
    font-size: 12px;
    text-align: center;
    padding: 5px 10px;
    border-radius: 15px;
    font-weight: bold;
    position: absolute;
    bottom: -15px;
    left: 0;
    text-align: center;
    width: 100%;
}

.page-title {
    text-align: center;
    margin-bottom: 40px;
    color: #333;
}
.subcont {
    padding: 0 10px;
}

.statuslab {
    background: #EAEEF4;
    display: inline;
    align-items: center;
    padding: 5px 6px 5px 10px;
    border-radius: 24px;
    color: #041958;
    font-size: 10px;
    display: flex;
    justify-content: space-between;
    max-width: 160px;
    margin: 0 auto;
}
.statuslab .eicon {
    background: white;
    font-size: 11px;
    border-radius: 40px;
    padding: 0px;
    color: #041958;
    font-weight: bold;
    line-height: 15px;
    width: 15px;
    height: 15px;
    padding-right: 0px;
}

.eicon {
    background: white;
    font-size: 13px;
    border-radius: 40px;
    padding: 1px;
    color: #041958;
    font-weight: bold;
    line-height: 15px;
    width: 17px;
    height: 17px;
    padding-right: 0px;
}