/**
 * @version     CVS: 1.0.0
 * @package     com_repositorio
 * @subpackage  mod_repositorio
 * @copyright   2025 UFG
 * @license     GNU General Public License versão 2 ou posterior; consulte o arquivo License. txt
 * @author      Railson Rodrigues leite <railsonrdr@hotmail.com>
 */

.jcc-table {
    width: 100%;
    margin-bottom: 18px;
}

.jcc-table tr{
    border: none;
}

.jcc-table td, .jcc-table th{
    padding: 8px;
    line-height: 18px;
    text-align: left;
    vertical-align: top;
    border: none;
    border-top: 1px solid #ddd;
}

/* Card Styles */

.repositorio-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    margin-bottom: 0px;
}

.repositorio-cards {
    display: flex;
    flex-wrap: nowrap;
    gap: 45px;
    justify-content: center;
    align-items: center;
}

.repositorio-card {
    width: 410px;
    height: 375px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0px 30px 80px 0px #5A90E11A;
    overflow: hidden;
    transition: all 0.3s ease;
}

.card-link {
    display: block;
    width: 100%;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 30px;
}

.card-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    width: 100%;
    margin: 0 auto;
}

.card-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    margin: 0 auto;
}

.card-arrow {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.arrow-icon {
    font-size: 36px;
    color: #000;
    transition: transform 0.3s ease;
    margin-right: 10px;
}

.card-link:hover .arrow-icon {
    transform: translateX(8px);
}


@media (max-width: 1024px) {
    .repositorio-cards {
        flex-wrap: wrap;
    }
}


@media (max-width: 768px) {
    .repositorio-card {
        width: 80%;
        height: auto;
    }
}

