body {
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  background-color: #efefef; }

p {
  color: #b3b3b3;
  font-weight: 300; }

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; }

a {
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease; }
  a, a:hover {
    text-decoration: none !important; }

.content {
  padding: 1rem 0; }

h2 {
  font-size: 20px; }

.form-control:active, .form-control:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none; }

#calendar {
  max-width: 900px;
  width: 100%;
  margin: 0 auto; }
  #calendar .fc-view-container {
    padding: 30px;
    background-color: #fff;
    -webkit-box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.2); }
    
.fc-today-button.fc-button.fc-button-primary {
	text-transform: capitalize;
}

/* NEW FILE */

/* Main container */
.sendlove-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Calendar wrapper */
.sendlove-calendar-wrapper {
    flex: 3;
    margin-right: 20px;
}

/* Loved ones list */
.sendlove-lovedones-list {
    flex: 1;
    background: #f9f9f9;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.sendlove-lovedones-list h3 {
    margin-top: 0;
    color: #333;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.sendlove-lovedones-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sendlove-lovedones-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.sendlove-lovedones-list li:last-child {
    border-bottom: none;
}

.sendlove-actions {
    margin-top: 5px;
}

.sendlove-actions a {
    font-size: 12px;
    margin-right: 10px;
    color: #666;
    text-decoration: none;
}

.sendlove-actions a:hover {
    color: #0073aa;
}

/* Calendar styles */
.sendlove-calendar {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.sendlove-calendar th {
    background: #f1f1f1;
    padding: 10px;
    text-align: center;
    font-weight: bold;
}

.sendlove-calendar td {
    border: 1px solid #ddd;
    padding: 5px;
    height: 100px;
    vertical-align: top;
    position: relative;
}

.sendlove-calendar td.sendlove-empty-day {
    background: #f9f9f9;
}

.sendlove-calendar td.sendlove-has-events {
    background: #f5f5ff;
}

.sendlove-day-number {
    font-weight: bold;
    margin-bottom: 5px;
}

.sendlove-events {
    font-size: 12px;
}

.sendlove-event {
    background: #e6e6ff;
    padding: 2px 5px;
    margin-bottom: 2px;
    border-radius: 3px;
}

/* Calendar header */
.sendlove-calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.sendlove-calendar-header h2 {
    margin: 0;
}

.sendlove-calendar-nav a {
    margin: 0 5px;
    text-decoration: none;
    color: #0073aa;
}

.sendlove-add-button {
    background: #0073aa;
    color: white;
    padding: 5px 10px;
    border-radius: 3px;
    text-decoration: none;
    font-size: 14px;
}

.sendlove-add-button:hover {
    background: #005177;
}

/* Form styles */
.sendlove-form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.sendlove-form-group {
    margin-bottom: 15px;
}

.sendlove-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.sendlove-form-group input[type="text"],
.sendlove-form-group input[type="date"],
.sendlove-form-group select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.sendlove-reminder-field {
    display: flex;
    margin-bottom: 10px;
}

.sendlove-reminder-field select {
    flex: 1;
    margin-right: 10px;
}

.sendlove-remove-reminder {
    background: #ff6b6b;
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    width: 30px;
}

.sendlove-submit-button {
    background: #0073aa;
    color: white;
    padding: 8px 15px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

.sendlove-cancel-button {
    background: #ddd;
    color: #333;
    padding: 8px 15px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    margin-left: 10px;
    text-decoration: none;
}

/* Notices */
.sendlove-notice {
    padding: 10px 15px;
    margin-bottom: 20px;
    border-radius: 3px;
}

.sendlove-notice.success {
    background: #d4edda;
    color: #155724;
}

.sendlove-notice.error {
    background: #f8d7da;
    color: #721c24;
}

/* Back button style */
.sendlove-back-button {
    display: inline-block;
    margin-bottom: 20px;
    padding: 8px 15px;
    background: #f0f0f0;
    color: #333;
    text-decoration: none;
    border-radius: 3px;
}

.sendlove-back-button:hover {
    background: #e0e0e0;
}

ul.my-lovedones-list li {
  display: flex;
  align-items: flex-start;
  background: linear-gradient(135deg, #F4B9A9, #fff7f5);
  list-style: none;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 12px;
  line-height: 1em;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-top: 3px solid #ff7f50;
}

.lovedone-icon {
  width: 40px;
  height: 40px;
  border-radius: 5px;
  object-fit: cover;
  margin-right: 15px;
}

.lovedone-content {
  flex: 1;
}

.sendlove-actions {
  margin-top: 8px;
}

.sendlove-actions a {
  margin-right: 10px;
  font-size: 0.9em;
  color: #333;
  text-decoration: underline;
}

ul.my-lovedones-list li:hover {
  transform: scale(1.01);
  background: linear-gradient(30deg, #F4B9A9, #fff7f5);
  transition: 1s ease;
}

ul.my-lovedones-list li:first-child {
  /* Style for the first list item */
  padding-top: 13px;
}

ul.my-lovedones-list li:last-child {
  /* Style for the last list item */
  padding-bottom: 13px;
}

.fc-content {
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  width: 150px; /* or whatever fixed width you use */
}

.fc-title {
  display: inline-block;
  padding-right: 100%; /* allows the full scroll distance */
  transition: transform 8s linear;
}

/* Animated on hover (conditionally via JavaScript) */
.fc-content.hovering .fc-title {
  transform: translateX(-100%);
}

.fc-title {
  will-change: transform;
}
.fc-content:not(.hovering) .fc-title {
  transform: translateX(0);
  transition: transform 0.5s ease-out;
}

.fc-day-grid-event.fc-h-event.fc-event.fc-start.fc-end {
	overflow: hidden;
}

.fc-title {
	font-size: 10px;
    line-height: 10px;
}

.my-lovedones-list li {
  cursor: pointer;
}

.fc-today-button.fc-button.fc-button-primary.fc-add-lovedone {
	margin: -9px 0 14px 0;
	align-self: self-start;
}