/* JSON Cheat Sheet Styles */
.json-cheat-sheet .section-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
    color: var(--primary-color);
}
.search-container {
    margin-bottom: 20px;
}
.search-container input {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ddd;
    transition: border-color 0.3s ease;
}
.search-container input:focus {
    border-color: var(--primary-color);
    outline: none;
}
.results-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.result-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: calc(33.33% - 20px);
}
.result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}
.result-card h4 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: var(--primary-color);
}
.result-card p {
    font-size: 0.9rem;
    color: #555;
}
pre {
    background-color: #f4f4f4;
    padding: 10px;
    border-radius: 5px;
    overflow-x: auto;
    font-size: 0.9rem;
    margin-top: 10px;
}
code {
    font-family: "Roboto Mono", monospace;
    color: #333;
}
/* Introduction Section Styles */
.tool-intro {
    background-color: #f9f9f9;
    padding: 40px 0;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.tool-intro .intro-title {
    text-align: center;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.tool-intro .intro-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 15px;
    text-align: justify;
}

.tool-intro .intro-list {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.tool-intro .intro-list li {
    margin-bottom: 10px;
    color: #555;
}

.tool-intro .intro-subtitle {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    text-align: center;
}

.tool-intro .intro-list li strong {
    color: var(--primary-hover-color);
    font-weight: bold;
}


@media (max-width: 768px) {
    .result-card {
        width: calc(50% - 20px);
    }
}
@media (max-width: 576px) {
    .result-card {
        width: 100%;
    }
}