/*
Theme Name: Twenty Twenty-Five Child
Description: A child theme for the Twenty Twenty-Five WordPress theme
Author: Jerry Barry
Author URI: https://github.com/jerrybarry
Template: twentytwentyfive
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: twentytwentyfive-child
*/

/* Import the parent theme's styles */
@import url("../twentytwentyfive/style.css");

/* Add your custom styles below */
/* =========================
   GLOBAL
========================= */
body.docs,
.wedocs-single-wrap {
    color: #292929;
    font-size: 16px;
    line-height: 1.7;
}

/* Links */
.wedocs-single-content a {
    color: #6c01ff;
    text-decoration: none;
    font-weight: 500;
}

.wedocs-single-content a:hover {
    text-decoration: underline;
}

/* =========================
   SIDEBAR
========================= */
.wedocs-sidebar {
    background: #fafafa;
    border-right: 1px solid #eee;
    padding: 25px;
}

/* Sidebar title */
.wedocs-sidebar .widget-title {
    color: #292929;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 20px;
}

/* Sidebar links */
.doc-nav-list a {
    color: #292929;
    padding: 6px 10px;
    display: block;
    border-radius: 6px;
    transition: .2s;
}

.doc-nav-list a:hover {
    background: rgba(108,1,255,.08);
    color: #6c01ff;
}

/* Active item */
.doc-nav-list .current_page_item > a {
    background: #6c01ff;
    color: #fff !important;
    font-weight: 600;
}

/* =========================
   CONTENT AREA
========================= */
.wedocs-single-content {
    padding: 40px;
    max-width: 900px;
}

/* Title */
.entry-title {
    font-size: 36px;
    font-weight: 800;
    color: #292929;
}

/* Headings */
.entry-content h2,
.entry-content h3,
.entry-content h4 {
    color: #292929;
    font-weight: 700;
    margin-top: 35px;
}

/* Purple accent line under headings */
.entry-content h2::after,
.entry-content h3::after {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    background: #6c01ff;
    margin-top: 8px;
}

/* =========================
   TABLES
========================= */
.entry-content table {
    border-collapse: collapse;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,.05);
}

.entry-content thead {
    background: #6c01ff;
    color: #fff;
}

.entry-content th,
.entry-content td {
    padding: 14px;
    border: 1px solid #eee;
}

/* =========================
   CODE BLOCKS
========================= */
.entry-content pre {
    background: #292929 !important;
    color: #fff !important;
    padding: 18px !important;
    border-radius: 10px !important;
    overflow-x: auto;
}

.entry-content code {
    background: rgba(108,1,255,.08);
    color: #6c01ff;
    padding: 3px 6px;
    border-radius: 4px;
}

/* =========================
   BREADCRUMBS
========================= */
.wedocs-breadcrumb a {
    color: #6c01ff;
    font-weight: 500;
}

/* =========================
   BUTTONS (Yes/No Feedback)
========================= */
.wedocs-tip {
    border: 1px solid #6c01ff;
    padding: 6px 14px;
    border-radius: 20px;
    transition: .2s;
}

.wedocs-tip:hover {
    background: #6c01ff;
    color: #fff;
}

/* =========================
   SEARCH BOX
========================= */
.wedocs-single-search-input input {
    border-radius: 20px;
    border: 1px solid #ddd;
    padding: 10px 15px;
}

.wedocs-single-search-input input:focus {
    border-color: #6c01ff;
    outline: none;
}

/* =========================
   MODAL
========================= */
.wedocs-contact-modal {
    border-radius: 12px;
}

.wedocs-form-action input[type="submit"] {
    background: #6c01ff;
    color: #fff;
    border: none;
    padding: 12px 22px;
    border-radius: 25px;
    cursor: pointer;
}

.wedocs-form-action input[type="submit"]:hover {
    opacity: .9;
}
