/*
 Theme Name:   Tidig Theme
 Theme URI:    https://generatepress.com
 Description:  GeneratePress child theme
 Author:       Emil Vidmark
 Author URI:   https://emilvidmark.com
 Template:     generatepress
 Version:      0.1
*/


input[type="text"] {

background-color : #f0fbff; 
    max-height: 30px;
    height: 30px;
transition: all 0.3s;
    border:none;
}

textarea {
    background-color : #f0fbff; 
    border: none;
}

textarea:focus {
    background-color : #f0fbff;
    border: none;
}

input[type="text"]:focus {
    background-color : #f0fbff;
        border: none;
        height: 40px;
        max-height: 40px;
}

button {
	background-color: #FF8498;
}

button:hover {
    background-color: #FF5165 !important;

}


a {
    color: #FF7092;
}


.comments-section {
	background-color: #E6F3FF; /* light blue background color */
	padding: 20px;
	border: 1px solid #ccc;
	margin-top: 20px;
}

.comments-section h3 {
	color: #333; /* black color for the title */
	font-size: 24px;
	margin-bottom: 10px;
}

.comments-section ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.comments-section li {
	margin-bottom: 20px;
	padding: 10px;
	border: 1px solid #ccc;
	background-color: #fff;
}

.comments-section li strong {
	color: #333; /* black color for the author name */
	font-weight: bold;
}

.comments-section li .comment-date {
	color: #999; /* gray color for the date */
	font-size: 14px;
	margin-bottom: 10px;
}

.comments-section li .comment-content {
	color: #333; /* black color for the comment content */
	font-size: 16px;
	line-height: 1.5;
}

.collapsibleRows {
	display: none;
}

.shownByDefault {
    display: table-row-group; /* or simply 'block' depending on context and desired effect */
}

.toggleRows:hover {
	cursor: pointer;
}

.hidden {
	display: none;
}
.wishlist_section {
	width: 100%;
}
.wishlist-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center; /* This will vertically align the heading and the button if they have different heights */
}

.wishlist-header-wrapper h1, .wishlist-header-wrapper .onskelistaNyttBtn {
    margin: 0;
}


.wishlist-item {
    display: flex;
    flex-wrap: wrap; /* This will allow items to wrap to the next line if they don't fit */
}

    .wishlist-item label,
    .wishlist-item input[type="text"] {
        display: block;
        margin-bottom: 10px;
		
    }

.wishlist-item form {
    display: flex;
    flex-direction: column; /* This will stack form fields vertically */
    flex-grow: 1; /* This will make the form take up all the remaining horizontal space beside the h3 */
}

.wishlist-item form ul {
    display: flex;
    flex-direction: row; /* This will arrange li elements horizontally */
    flex-wrap: wrap; /* In case they don't all fit in a single row */
}

.wishlist-item form ul li {
    margin: 15px; /* Space between each field */
}

.wishlist-section-content {
    display: none;
}

.toggle-wishlist-header {
    cursor: pointer;
}

.wishlist-item-table input {
		background-color: var(--base-2)
}

.wishlist-item-table textarea {
		background-color: var(--base-2)
}

.wishlist-delete {
	margin-left: 10px;
}

.toggle-wishlist-header,
.toggle-table {
	display: inline-block;
    cursor: pointer;
    transition: background-color 0.1s ease-in-out, box-shadow 0.1s ease-in-out;
    border-radius: 4px;
    padding: 10px;
}


.toggle-wishlist-header:hover,
.toggle-table:hover {
    background-color: #FF90b2;
}

.toggle-wishlist-header.active, 
.toggle-table.active {

}

.toggle-wishlist-header > h4 {
	margin-bottom: 0px !important;
}
.toggle-wishlist-header.active .expand-arrow,
.toggle-table.active .expand-arrow {
	transform: rotate(90deg); /* this will rotate the arrow to point downwards */
	transition: transform 0.1s ease-in-out; /* smooth transition for the rotation */
}
.expand-arrow {
	display: inline-block;
	transition: transform 0.1s ease-in-out;
}

.toggle-table.clickable-title {
	cursor: pointer;
}

.toggle-wishlist-header .expand-arrow {
    display: inline-block;
    transition: transform 0.1s ease;
}

.toggle-wishlist-header.active .expand-arrow {
    transform: rotate(90deg);
}

.onskelistaNyttBtn {
	background-color: #FF8498;
    border-radius: 50px;
    color: #fff;
	height: 50px;
	width: 225px;
	font-size: 15px;
}



