.param-type-card {
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.param-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.param-header {
    padding: 15px;
    color: white;
    font-weight: bold;
}

.param-content {
    padding: 20px;
    background-color: white;
}

.url-params { background-color: #4299e1; }
.form-data { background-color: #48bb78; }
.json-data { background-color: #ed8936; }
.file-upload { background-color: #9f7aea; }
.headers { background-color: #f56565; }
.cookies { background-color: #38b2ac; }

.comparison-table {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.comparison-table th {
    background-color: #4a6ee0;
    color: white;
}

.param-visualization {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    border-left: 4px solid #4a6ee0;
}

.request-flow {
    position: relative;
    padding: 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 8px;
    margin: 20px 0;
}

.flow-step {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px;
    background-color: white;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.step-number {
    width: 30px;
    height: 30px;
    background-color: #4a6ee0;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
}

.code-comparison {
    display: flex;
    gap: 20px;
    margin: 20px 0;
}

.code-column {
    flex: 1;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

.column-header {
    padding: 10px 15px;
    background-color: #e9ecef;
    font-weight: bold;
    border-bottom: 1px solid #dee2e6;
}

.code-body {
    padding: 15px;
}

@media (max-width: 768px) {
    .code-comparison {
        flex-direction: column;
    }
}

.note-box {
    background-color: #e8f4fd;
    border-left: 4px solid #1890ff;
    padding: 15px;
    border-radius: 5px;
    margin: 15px 0;
}

.warning-box {
    background-color: #fff8e1;
    border-left: 4px solid #ffb300;
    padding: 15px;
    border-radius: 5px;
    margin: 15px 0;
}

.tip-box {
    background-color: #f0fff4;
    border-left: 4px solid #38a169;
    padding: 15px;
    border-radius: 5px;
    margin: 15px 0;
}

.param-diagram {
    text-align: center;
    margin: 20px 0;
}

.diagram-container {
    display: inline-block;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
