/*
Theme Name: Digicove Child
Description: Child theme of Digicove theme for Text Case Converter integration
Template: digicove
Version: 1.0.0
Author: Your Name
*/

/* Import parent theme styles */
@import url("../digicove/style.css");

/* Custom styles for Text Case Converter */
.text-converter-page .entry-content {
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

.text-converter-page .container {
    max-width: 1200px !important;
}

/* Hide page title if needed */
.text-converter-page .entry-title {
    display: none;
}

/* Ensure converter tool fits well */
.text-case-converter-wrapper {
    margin: 20px auto !important;
    width: 100% !important;
}

/* Override any theme conflicts */
.text-case-converter-wrapper * {
    box-sizing: border-box !important;
}

/* Mobile optimization */
@media (max-width: 768px) {
    .text-case-converter-wrapper {
        margin: 10px !important;
    }
}