.css-prefixer-tool {
    padding: 40px 0;
    background-color: #f8f9fa;
}

.tool-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 20px;
}

.tool-section {
    background: white;
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.section-header {
    padding: 20px 24px;
    border-bottom: 1px solid #e9ecef;
    background-color: #fff;
}

.section-title {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.code-area {
    position: relative;
    height: 400px;
}

.code-textarea {
    width: 100%;
    height: 100%;
    border: none;
    padding: 20px 24px;
    font-family: "Monaco", "Menlo", "Ubuntu Mono", monospace;
    font-size: 14px;
    line-height: 1.5;
    background-color: #f8f9fa;
    color: #2c3e50;
    resize: none;
    outline: none;
    box-sizing: border-box;
}

.code-textarea::placeholder {
    color: #6c757d;
    font-style: italic;
}

.code-textarea:focus {
    background-color: #fff;
}

.section-footer {
    padding: 20px 24px;
    background-color: #fff;
    border-top: 1px solid #e9ecef;
    text-align: center;
}

.tool-btn {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    min-width: 120px;
    justify-content: center;
}

.tool-btn:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.tool-btn:active {
    transform: translateY(0);
}

.tool-btn svg {
    width: 16px;
    height: 16px;
}

.tool-tip {
    text-align: center;
    color: #8b9dc3;
    font-size: 14px;
    margin-top: 20px;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .tool-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .tool-container {
        padding: 0 15px;
    }

    .css-prefixer-tool {
        padding: 20px 0;
    }
}
.content-box {
    border: 1px solid #ddd;
    padding: 40px 30px;
    background: #fff;
    /* margin-top: 50px; */
    border-radius: 16px;
    /* width: 850px;
    max-width: 100%; */
}

.content-box .hdng {
    font-size: 28px;
    margin-bottom: 10px;
    color: #0f256e;
}

.content-box .cntnt,
.content-box li {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 300;
    margin: 0;
    padding: 0;
}

.content-box ul{
    padding-left: 0px;
    margin-top: 10px;
    list-style: none;
}

.content-box .subHdng {
    margin-top: 25px;
    font-size: 20px;
    margin-bottom: 10px;
    color: #0f256e;
}