/*
 Theme Name:   Enfold Child
 Theme URI:    https://gsamining.com
 Description:  Enfold Child Theme
 Author:       Britton Keene
 Author URI:   https://lavation.com
 Template:     enfold
 Version:      1.0.0
*/

/* Import Enfold parent theme styles */
@import url("../enfold/style.css");

/* Add your custom styles below */
/* Sidebar styling with padding */
.widget-area {
    width: 25%; /* Sidebar width */
    float: right; /* Align sidebar to the right */
    padding: 20px; /* Padding inside the sidebar */
    box-sizing: border-box;
}

/* Add a margin to the left of the sidebar to push it away from the dividing line */
.widget-area {
    margin-left: 20px; /* Space between the sidebar and dividing line */
}

/* Main content */
.content-area {
    width: 70%; /* Main content width */
    float: left; /* Align content to the left */
    padding: 20px;
    box-sizing: border-box;
}

/* Clearfix for layout */
.content-area::after,
.widget-area::after {
    content: "";
    display: table;
    clear: both;
}

main {
 /*border-color: rgba(0,0,0,0)!important;*/
 margin-right: 10px!important;
}

input[type="search"] {
  border: 2px solid black!important; /* Black border */
  border-radius: 0; /* Optional: Removes default rounded corners */
  padding: 5px; /* Optional: Adds spacing inside the input */
  outline: none; /* Optional: Removes default blue outline on focus */
}

input[type="search"]:focus {
  border-color: black; /* Ensures black border remains on focus */
  box-shadow: none; /* Removes any default box-shadow on focus */
}