/* index2.php 스타일시트 */

.link-category {
    margin-bottom: 20px;
}

.link-card {
    transition: transform 0.2s;
    height: 100%;
}

.link-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.link-item {
    display: inline-block;
    margin: 2px 4px 2px 0;
    padding: 1px 6px;
    border-radius: 3px;
    font-size: 13px;
    line-height: 1.6;
    text-decoration: none;
    color: #0000A0;
}

.link-item:hover {
    background-color: #f0f0f0;
    text-decoration: underline;
}

.link-item img {
    width: 16px;
    height: 16px;
    margin-right: 4px;
    vertical-align: middle;
}

.category-header {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 2px solid #007bff;
}

.custom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.card-body {
    padding: 10px !important;
    line-height: 1.8;
}

.card-body .mb-2 {
    margin-bottom: 8px !important;
}

.card-body small {
    display: block;
    margin-bottom: 4px !important;
    font-weight: 600;
}

