.installation-method {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    background-color: #fff;
}
.installation-method:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}
.method-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #42b883;
}
.method-title {
    color: #2c3e50;
    border-bottom: 2px solid #42b883;
    padding-bottom: 10px;
    margin-bottom: 20px;
}
.prerequisites-box {
    background-color: #e8f5e9;
    border-left: 4px solid #4caf50;
    padding: 20px;
    border-radius: 0 8px 8px 0;
    margin-bottom: 30px;
}
.warning-box {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 20px;
    border-radius: 0 8px 8px 0;
    margin: 25px 0;
}
.info-box {
    background-color: #e3f2fd;
    border-left: 4px solid #2196f3;
    padding: 20px;
    border-radius: 0 8px 8px 0;
    margin: 25px 0;
}
.step-box {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    border-left: 4px solid #6c757d;
}
.step-number {
    display: inline-block;
    background-color: #42b883;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    margin-right: 10px;
    font-weight: bold;
}
.command-box {
    background-color: #2d3748;
    color: #e2e8f0;
    padding: 15px;
    border-radius: 6px;
    font-family: 'Courier New', monospace;
    margin: 15px 0;
    overflow-x: auto;
}
.command-box .command-prompt {
    color: #81e6d9;
    margin-right: 10px;
}
.version-badge {
    display: inline-block;
    padding: 3px 8px;
    background-color: #42b883;
    color: white;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-left: 10px;
}
.comparison-table {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin: 30px 0;
}
.comparison-table th {
    background-color: #42b883;
    color: white;
    padding: 15px;
    text-align: center;
}
.comparison-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
    vertical-align: top;
}
.comparison-table tr:last-child td {
    border-bottom: none;
}
.tool-card {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    border-top: 4px solid #42b883;
    transition: transform 0.3s ease;
}
.tool-card:hover {
    transform: translateY(-5px);
}
.tool-icon {
    font-size: 2rem;
    color: #42b883;
    margin-bottom: 15px;
}
.tool-name {
    color: #2c3e50;
    font-weight: bold;
    margin-bottom: 10px;
}
.checklist-item {
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
}
.checklist-item:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #42b883;
    font-weight: bold;
}
